aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--base/main.cpp8
-rw-r--r--common/util.cpp12
2 files changed, 12 insertions, 8 deletions
diff --git a/base/main.cpp b/base/main.cpp
index 38fca03864..2a6e34b5ec 100644
--- a/base/main.cpp
+++ b/base/main.cpp
@@ -143,14 +143,6 @@ const char *gScummVMFeatures = ""
#endif
;
-/**
- * The debug level. Initially set to -1, indicating that no debug output
- * should be shown. Positive values usually imply an increasing number of
- * debug output shall be generated, the higher the value, the more verbose the
- * information (although the exact semantics are up to the engines).
- */
-int gDebugLevel = -1;
-
static void setupDummyPalette(OSystem &system) {
// FIXME - mouse cursors are currently always set via 8 bit data.
// Thus for now we need to setup a dummy palette. On the long run, we might
diff --git a/common/util.cpp b/common/util.cpp
index 0945161c1b..9649d35ef4 100644
--- a/common/util.cpp
+++ b/common/util.cpp
@@ -341,6 +341,18 @@ const Array<EngineDebugLevel> &listSpecialDebugLevels() {
} // End of namespace Common
+
+
+/**
+ * The debug level. Initially set to -1, indicating that no debug output
+ * should be shown. Positive values usually imply an increasing number of
+ * debug output shall be generated, the higher the value, the more verbose the
+ * information (although the exact semantics are up to the engines).
+ */
+int gDebugLevel = -1;
+
+
+
static void debugHelper(char *buf, bool caret = true) {
#ifndef _WIN32_WCE
if (caret)