diff options
author | truelight <truelight@openttd.org> | 2005-03-10 10:59:35 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-03-10 10:59:35 +0000 |
commit | 832372150fe094c6e69060851f7a68d907e04ee2 (patch) | |
tree | f0408bad217d88de674a6bada7f9e134a81bce85 | |
parent | ca3ccff7291f608325b0cb6827ea3bbf4c7d8d67 (diff) | |
download | openttd-832372150fe094c6e69060851f7a68d907e04ee2.tar.xz |
(svn r1982) -Fix: also windows has no 'fork' option
-rw-r--r-- | ttd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |