diff options
author | Travis Howell | 2002-12-08 02:13:13 +0000 |
---|---|---|
committer | Travis Howell | 2002-12-08 02:13:13 +0000 |
commit | 55f1a4c7cde9e4ed43df8a34c5304e7150e6558c (patch) | |
tree | 583fed2e1544062afe8e591db4c3f8256bbbdaef | |
parent | 149aa08ba23e725d236861bc979ca55aaf45ca4d (diff) | |
download | scummvm-rg350-55f1a4c7cde9e4ed43df8a34c5304e7150e6558c.tar.gz scummvm-rg350-55f1a4c7cde9e4ed43df8a34c5304e7150e6558c.tar.bz2 scummvm-rg350-55f1a4c7cde9e4ed43df8a34c5304e7150e6558c.zip |
Give _debuglevel a default value
svn-id: r5876
-rw-r--r-- | common/gameDetector.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/gameDetector.cpp b/common/gameDetector.cpp index 2eb515efd0..7617c65503 100644 --- a/common/gameDetector.cpp +++ b/common/gameDetector.cpp @@ -28,7 +28,6 @@ #include "common/gameDetector.h" #include "common/config-file.h" - #define CHECK_OPTION() if ((current_option != NULL) || (*s != '\0')) goto ShowHelpAndExit #define HANDLE_OPTION() if ((*s == '\0') && (current_option == NULL)) goto ShowHelpAndExit; \ if ((*s != '\0') && (current_option != NULL)) goto ShowHelpAndExit; \ @@ -83,6 +82,7 @@ GameDetector::GameDetector() _amiga = false; _talkSpeed = 60; + _debugLevel = 1; _debugMode = 0; _noSubtitles = false; _bootParam = 0; |