aboutsummaryrefslogtreecommitdiff
path: root/base/commandLine.cpp
diff options
context:
space:
mode:
authorJohannes Schickel2010-10-24 19:07:46 +0000
committerJohannes Schickel2010-10-24 19:07:46 +0000
commit2e0b1c621388d7b37746cf41f7d1104ac900b133 (patch)
tree318a48ee72063b4da9c668d67aa2fa578f15939c /base/commandLine.cpp
parent27ee12e6a596dc585622e0cee5a27f906503df70 (diff)
downloadscummvm-rg350-2e0b1c621388d7b37746cf41f7d1104ac900b133.tar.gz
scummvm-rg350-2e0b1c621388d7b37746cf41f7d1104ac900b133.tar.bz2
scummvm-rg350-2e0b1c621388d7b37746cf41f7d1104ac900b133.zip
SDL/WIN32: Disable currently unused config entries, added with r53767.
This code should be enabled, when we decide to enable m_kiewitz' code to disable the console window. Also we should add the command to the --help output etc. svn-id: r53769
Diffstat (limited to 'base/commandLine.cpp')
-rw-r--r--base/commandLine.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/base/commandLine.cpp b/base/commandLine.cpp
index 2892d31302..cf59ae6dfd 100644
--- a/base/commandLine.cpp
+++ b/base/commandLine.cpp
@@ -220,10 +220,13 @@ void registerDefaults() {
ConfMan.registerDefault("record_temp_file_name", "record.tmp");
ConfMan.registerDefault("record_time_file_name", "record.time");
+#if 0
+ // NEW CODE TO HIDE CONSOLE FOR WIN32
#ifdef WIN32
// console hiding for win32
ConfMan.registerDefault("show_console", false);
#endif
+#endif
}
//
@@ -551,11 +554,14 @@ Common::String parseCommandLine(Common::StringMap &settings, int argc, const cha
END_OPTION
#endif
+#if 0
+ // NEW CODE TO HIDE CONSOLE FOR WIN32
#ifdef WIN32
// console hiding for win32
DO_LONG_OPTION_BOOL("show-console")
END_OPTION
#endif
+#endif
unknownOption:
// If we get till here, the option is unhandled and hence unknown.