aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/debug.h
diff options
context:
space:
mode:
authorD G Turner2018-10-16 18:25:03 +0100
committerD G Turner2018-10-16 18:25:03 +0100
commitcc5d858169116c2758c4c3c0eb0cf983b9ccce21 (patch)
tree77589d5cb72277fce7b583f9e43f23e64d257640 /engines/lastexpress/debug.h
parent5d340d244cc21f93b3cb7f46228fb767d9d16cd9 (diff)
downloadscummvm-rg350-cc5d858169116c2758c4c3c0eb0cf983b9ccce21.tar.gz
scummvm-rg350-cc5d858169116c2758c4c3c0eb0cf983b9ccce21.tar.bz2
scummvm-rg350-cc5d858169116c2758c4c3c0eb0cf983b9ccce21.zip
LASTEXPRESS: Remove Engine Specific All Debug Level.
This is replaced by the global "all" option for debugflags and defining this triggers a warning about the conflict at runtime.
Diffstat (limited to 'engines/lastexpress/debug.h')
-rw-r--r--engines/lastexpress/debug.h20
1 files changed, 9 insertions, 11 deletions
diff --git a/engines/lastexpress/debug.h b/engines/lastexpress/debug.h
index 7a1e2648fb..75786480f8 100644
--- a/engines/lastexpress/debug.h
+++ b/engines/lastexpress/debug.h
@@ -32,17 +32,15 @@
namespace LastExpress {
enum {
- kLastExpressDebugAll = 1 << 0,
- kLastExpressDebugGraphics = 1 << 1,
- kLastExpressDebugResource = 1 << 2,
- kLastExpressDebugCursor = 1 << 3,
- kLastExpressDebugSound = 1 << 4,
- kLastExpressDebugSubtitle = 1 << 5,
- kLastExpressDebugSavegame = 1 << 6,
- kLastExpressDebugLogic = 1 << 7,
- kLastExpressDebugScenes = 1 << 8,
- kLastExpressDebugUnknown = 1 << 9
- // the current limitation is 32 debug levels (1 << 31 is the last one)
+ kLastExpressDebugGraphics = 1 << 0,
+ kLastExpressDebugResource = 1 << 1,
+ kLastExpressDebugCursor = 1 << 2,
+ kLastExpressDebugSound = 1 << 3,
+ kLastExpressDebugSubtitle = 1 << 4,
+ kLastExpressDebugSavegame = 1 << 5,
+ kLastExpressDebugLogic = 1 << 6,
+ kLastExpressDebugScenes = 1 << 7,
+ kLastExpressDebugUnknown = 1 << 8
};
class LastExpressEngine;