summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2006-06-17 02:25:18 +0000
committerglx <glx@openttd.org>2006-06-17 02:25:18 +0000
commitdcfcf7df4ace8aea0e03190a01867892d7278099 (patch)
tree5fde347915c519ad67d541477e4b168122f26f8f /openttd.c
parente835bba5b12c891900b896e45cfd540ab836f26b (diff)
downloadopenttd-dcfcf7df4ace8aea0e03190a01867892d7278099.tar.xz
(svn r5291) - Fix: '-f' switch is not valid on windows, so don't show it in help
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openttd.c b/openttd.c
index 1357c1022..a7771c8e2 100644
--- a/openttd.c
+++ b/openttd.c
@@ -148,7 +148,7 @@ static void showhelp(void)
" -G seed = Set random seed\n"
" -n [ip#player:port] = Start networkgame\n"
" -D = Start dedicated server\n"
- #if !defined(__MORPHOS__) && !defined(__AMIGA__)
+ #if !defined(__MORPHOS__) && !defined(__AMIGA__) && !defined(WIN32)
" -f = Fork into the background (dedicated only)\n"
#endif
" -i = Force to use the DOS palette\n"