aboutsummaryrefslogtreecommitdiff
path: root/engines/groovie/groovie.h
diff options
context:
space:
mode:
authorD G Turner2014-06-05 03:01:12 +0100
committerD G Turner2014-06-05 03:01:12 +0100
commitd8751516ccd4c695696985b330b0ac65475f5170 (patch)
tree7c76e009ec58d90ffcebae1ea5e0ab95d2d1db2e /engines/groovie/groovie.h
parent1e6fe10e3d5febb178cc7f009295a386da579066 (diff)
downloadscummvm-rg350-d8751516ccd4c695696985b330b0ac65475f5170.tar.gz
scummvm-rg350-d8751516ccd4c695696985b330b0ac65475f5170.tar.bz2
scummvm-rg350-d8751516ccd4c695696985b330b0ac65475f5170.zip
GROOVIE: Remove engine-specific "all" debugflag. Minor naming cleanup.
This is now uneeded as the GUI debugger superclass implements the same functionality and this removes a bunch of complexity from the Groovie engine debug calls. Also, removed groovie prefix from the debug flag naming as unecessary as these are within the Groovie namespace.
Diffstat (limited to 'engines/groovie/groovie.h')
-rw-r--r--engines/groovie/groovie.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/groovie/groovie.h b/engines/groovie/groovie.h
index 9fe6b0c2f5..d442d39cb2 100644
--- a/engines/groovie/groovie.h
+++ b/engines/groovie/groovie.h
@@ -58,18 +58,18 @@ class Script;
class VideoPlayer;
enum DebugLevels {
- kGroovieDebugAll = 1 << 0,
- kGroovieDebugVideo = 1 << 1,
- kGroovieDebugResource = 1 << 2,
- kGroovieDebugScript = 1 << 3,
- kGroovieDebugUnknown = 1 << 4,
- kGroovieDebugHotspots = 1 << 5,
- kGroovieDebugCursor = 1 << 6,
- kGroovieDebugMIDI = 1 << 7,
- kGroovieDebugScriptvars = 1 << 8,
- kGroovieDebugCell = 1 << 9,
- kGroovieDebugFast = 1 << 10
- // the current limitation is 32 debug levels (1 << 31 is the last one)
+ kDebugVideo = 1 << 0,
+ kDebugResource = 1 << 1,
+ kDebugScript = 1 << 2,
+ kDebugUnknown = 1 << 3,
+ kDebugHotspots = 1 << 4,
+ kDebugCursor = 1 << 5,
+ kDebugMIDI = 1 << 6,
+ kDebugScriptvars = 1 << 7,
+ kDebugCell = 1 << 8,
+ kDebugFast = 1 << 9
+ // the current limitation is 32 debug levels (1 << 31 is the last one)
+ // but some are used by system, so avoid high values.
};
/**