# HG changeset patch # User glx # Date 1150511118 0 # Node ID cb75fb97ad7abefc23d3cf7420a9e20173a4dd8f # Parent d9b86655745634c4e8f036cec305198f806c71ef (svn r5291) - Fix: '-f' switch is not valid on windows, so don't show it in help diff --git a/openttd.c b/openttd.c --- a/openttd.c +++ b/openttd.c @@ -148,7 +148,7 @@ " -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"