summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortron <tron@openttd.org>2006-02-01 06:12:02 +0000
committertron <tron@openttd.org>2006-02-01 06:12:02 +0000
commit8cdd3261fc5e37d2d39364d9c2c1449f83b1c504 (patch)
tree5974a29025c5e37c3ba3e3a436fa7a67b9fe5aeb
parent6c1db94a7d70bd1e1a1b7090ad2cf7935f90e8fd (diff)
downloadopenttd-8cdd3261fc5e37d2d39364d9c2c1449f83b1c504.tar.xz
(svn r3509) Now -p is really gone (fix r3508)
-rw-r--r--openttd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openttd.c b/openttd.c
index f7831ec5e..e393b6c0a 100644
--- a/openttd.c
+++ b/openttd.c
@@ -328,9 +328,9 @@ int ttd_main(int argc, char* argv[])
// 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__) && !defined(WIN32)
- optformat = "bm:s:v:hDfn::eit:d::r:g::G:p:c:";
+ optformat = "bm:s:v:hDfn::eit:d::r:g::G:c:";
#else
- optformat = "bm:s:v:hDn::eit:d::r:g::G:p:c:"; // no fork option
+ optformat = "bm:s:v:hDn::eit:d::r:g::G:c:"; // no fork option
#endif
MyGetOptInit(&mgo, argc-1, argv+1, optformat);