diff options
author | rubidium <rubidium@openttd.org> | 2010-02-24 22:41:51 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-02-24 22:41:51 +0000 |
commit | 4cde66a5477ea1bb5093cf0f51e70b2a01650f16 (patch) | |
tree | 8be615c323bc911404f27ea9211396e5bdeb980e | |
parent | ba82d7d9a5625033fd649f09591dec98da6885b9 (diff) | |
download | openttd-4cde66a5477ea1bb5093cf0f51e70b2a01650f16.tar.xz |
(svn r19233) -Fix: the -M command line option did not work
-rw-r--r-- | src/openttd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp index 869cb6f81..9886b9e17 100644 --- a/src/openttd.cpp +++ b/src/openttd.cpp @@ -446,7 +446,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>) */ - optformat = "m:s:v:b:hD::n::ei::I:S:t:d::r:g::G:c:xl:p:P:" + optformat = "m:s:v:b:hD::n::ei::I:S:M:t:d::r:g::G:c:xl:p:P:" #if !defined(__MORPHOS__) && !defined(__AMIGA__) && !defined(WIN32) "f" #endif |