(svn r1982) -Fix: also windows has no 'fork' option

This commit is contained in:
truelight 2005-03-10 10:59:35 +00:00
parent 4bf173e9c1
commit ba89c8d580
1 changed files with 1 additions and 1 deletions

2
ttd.c
View File

@ -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