(svn r3509) Now -p is really gone (fix r3508)
authortron
Wed, 01 Feb 2006 06:12:02 +0000
changeset 2950 4d5eda9a0964
parent 2949 54f07f2a201a
child 2951 2db3adee7736
(svn r3509) Now -p is really gone (fix r3508)
openttd.c
--- a/openttd.c	Wed Feb 01 06:09:37 2006 +0000
+++ b/openttd.c	Wed Feb 01 06:12:02 2006 +0000
@@ -328,9 +328,9 @@
 	//   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);