summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index 816180ba2..370b0b246 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -172,10 +172,6 @@ static void ShowHelp()
" -f = Fork into the background (dedicated only)\n"
#endif
#endif /* ENABLE_NETWORK */
- " -i palette = Force to use the DOS (0) or Windows (1) palette\n"
- " (defines default setting when adding newgrfs)\n"
- " Default value (2) lets OpenTTD use the palette\n"
- " specified in graphics set file (see below)\n"
" -I graphics_set = Force the graphics set (see below)\n"
" -S sounds_set = Force the sounds set (see below)\n"
" -M music_set = Force the music set (see below)\n"
@@ -356,7 +352,6 @@ static const OptionData _options[] = {
GETOPT_SHORT_VALUE('t'),
GETOPT_SHORT_OPTVAL('d'),
GETOPT_SHORT_NOVAL('e'),
- GETOPT_SHORT_OPTVAL('i'),
GETOPT_SHORT_OPTVAL('g'),
GETOPT_SHORT_VALUE('G'),
GETOPT_SHORT_VALUE('c'),
@@ -457,13 +452,6 @@ int ttd_main(int argc, char *argv[])
break;
}
case 'e': _switch_mode = SM_EDITOR; break;
- case 'i':
- /* there is an argument, it is not empty, and it is exactly 1 char long */
- if (!StrEmpty(mgo.opt) && mgo.opt[1] == '\0') {
- _use_palette = (PaletteType)(mgo.opt[0] - '0');
- if (_use_palette <= MAX_PAL) break;
- }
- usererror("Valid value for '-i' is 0, 1 or 2");
case 'g':
if (mgo.opt != NULL) {
strecpy(_file_to_saveload.name, mgo.opt, lastof(_file_to_saveload.name));