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 | ba89c8d580f0cd34e95c0a8bedf485b7b8c2512d (patch) | |
tree | f0408bad217d88de674a6bada7f9e134a81bce85 | |
parent | 4bf173e9c1bc8fbee721ec0f452a7acce0507fc9 (diff) | |
download | openttd-ba89c8d580f0cd34e95c0a8bedf485b7b8c2512d.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 |