diff options
author | tron <tron@openttd.org> | 2006-02-01 06:12:02 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2006-02-01 06:12:02 +0000 |
commit | 8cdd3261fc5e37d2d39364d9c2c1449f83b1c504 (patch) | |
tree | 5974a29025c5e37c3ba3e3a436fa7a67b9fe5aeb | |
parent | 6c1db94a7d70bd1e1a1b7090ad2cf7935f90e8fd (diff) | |
download | openttd-8cdd3261fc5e37d2d39364d9c2c1449f83b1c504.tar.xz |
(svn r3509) Now -p is really gone (fix r3508)
-rw-r--r-- | openttd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |