aboutsummaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorEugene Sandulenko2006-05-18 13:59:20 +0000
committerEugene Sandulenko2006-05-18 13:59:20 +0000
commit9e3b78e1e988ec042ab8b20b27246ccf6ba73614 (patch)
treeab599e515f1dead68d4abce02c9982f891653bb7 /base
parente563d0c18203e4ca4d5a585eb98365fef513ca4a (diff)
downloadscummvm-rg350-9e3b78e1e988ec042ab8b20b27246ccf6ba73614.tar.gz
scummvm-rg350-9e3b78e1e988ec042ab8b20b27246ccf6ba73614.tar.bz2
scummvm-rg350-9e3b78e1e988ec042ab8b20b27246ccf6ba73614.zip
--force-1x-overlay is no more. Remove leftovers.
svn-id: r22519
Diffstat (limited to 'base')
-rw-r--r--base/commandLine.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index 2d63a8f210..fd2284da7a 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -116,7 +116,6 @@ static const char HELP_STRING[] =
" --aspect-ratio Enable aspect ratio correction\n"
" --render-mode=MODE Enable additional render modes (cga, ega, hercGreen,\n"
" hercAmber, amiga)\n"
- " --force-1x-overlay Make inner GUI 320x200\n"
"\n"
#if !defined(DISABLE_SKY) || !defined(DISABLE_QUEEN)
" --alt-intro Use alternative intro for CD versions of Beneath a\n"
@@ -165,12 +164,6 @@ void registerDefaults() {
ConfMan.registerDefault("aspect_ratio", false);
ConfMan.registerDefault("gfx_mode", "normal");
ConfMan.registerDefault("render_mode", "default");
-#if defined(__SYMBIAN32__)
- ConfMan.registerDefault("force_1x_overlay", true);
-#else
- ConfMan.registerDefault("force_1x_overlay", false);
-#endif
-
// Sound & Music
ConfMan.registerDefault("music_volume", 192);
@@ -476,9 +469,6 @@ Common::String parseCommandLine(Common::StringMap &settings, int argc, char **ar
usage("Unrecognized render mode '%s'", option);
END_OPTION
- DO_LONG_OPTION_BOOL("force-1x-overlay")
- END_OPTION
-
DO_LONG_OPTION("savepath")
// TODO: Verify whether the path is valid
END_OPTION