summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2005-03-10 10:59:35 +0000
committertruelight <truelight@openttd.org>2005-03-10 10:59:35 +0000
commitba89c8d580f0cd34e95c0a8bedf485b7b8c2512d (patch)
treef0408bad217d88de674a6bada7f9e134a81bce85
parent4bf173e9c1bc8fbee721ec0f452a7acce0507fc9 (diff)
downloadopenttd-ba89c8d580f0cd34e95c0a8bedf485b7b8c2512d.tar.xz
(svn r1982) -Fix: also windows has no 'fork' option
-rw-r--r--ttd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ttd.c b/ttd.c
index eeb0c2452..b551b916b 100644
--- a/ttd.c
+++ b/ttd.c
@@ -514,7 +514,7 @@ int ttd_main(int argc, char* argv[])
// a letter means: it accepts that param (e.g.: -h)
// a ':' behind it means: it need a param (e.g.: -m<driver>)
// a '::' behind it means: it can optional have a param (e.g.: -d<debug>)
- #if !defined(__MORPHOS__) && !defined(__AMIGA__)
+ #if !defined(__MORPHOS__) && !defined(__AMIGA__) && !defined(WIN32)
optformat = "m:s:v:hDfn::l:eit:d::r:g::G:p:";
#else
optformat = "m:s:v:hDn::l:eit:d::r:g::G:p:"; // no fork option