summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-12-14 06:32:06 +0000
committertron <tron@openttd.org>2005-12-14 06:32:06 +0000
commit4634243110ae363594dddbb3c291b4693360b777 (patch)
tree13a2116db325c75e5e39a595840ef166bb23f3fd /openttd.c
parentbf98086de80da38fb0256f3f076d5069f6b4e997 (diff)
downloadopenttd-4634243110ae363594dddbb3c291b4693360b777.tar.xz
(svn r3299) Remove the unimplemented -l option, which should select the language
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/openttd.c b/openttd.c
index bfd0df97c..c4338c099 100644
--- a/openttd.c
+++ b/openttd.c
@@ -133,7 +133,6 @@ static void showhelp(void)
" -h = Display this help text\n"
" -t date = Set starting date\n"
" -d [[fac=]lvl[,...]]= Debug mode\n"
- " -l lng = Select Language\n"
" -e = Start Editor\n"
" -g [savegame] = Start new/save game immediately\n"
" -G seed = Set random seed\n"
@@ -309,7 +308,6 @@ int ttd_main(int argc, char* argv[])
int i;
bool network = false;
char *network_conn = NULL;
- char *language = NULL;
const char *optformat;
char musicdriver[16], sounddriver[16], videodriver[16];
int resolution[2] = {0,0};
@@ -333,9 +331,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 = "a:bm:s:v:hDfn::l:eit:d::r:g::G:p:c:";
+ optformat = "a:bm:s:v:hDfn::eit:d::r:g::G:p:c:";
#else
- optformat = "a:bm:s:v:hDn::l:eit:d::r:g::G:p:c:"; // no fork option
+ optformat = "a:bm:s:v:hDn::eit:d::r:g::G:p:c:"; // no fork option
#endif
MyGetOptInit(&mgo, argc-1, argv+1, optformat);
@@ -368,7 +366,6 @@ int ttd_main(int argc, char* argv[])
#endif /* GPMI */
case 'b': _ai.network_client = true; break;
case 'r': ParseResolution(resolution, mgo.opt); break;
- case 'l': language = mgo.opt; break;
case 't': startdate = atoi(mgo.opt); break;
case 'd': {
#if defined(WIN32)