aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorJames Brown2004-01-10 11:01:47 +0000
committerJames Brown2004-01-10 11:01:47 +0000
commitc4528ac022d13fde66a4d494110da4e97d2660c0 (patch)
tree7333045950dfebd54635d5fd13ee0f228c793cf7 /scumm/scumm.h
parent158acbb70c49a7bdbf721c928e8b2ad353d2a52b (diff)
downloadscummvm-rg350-c4528ac022d13fde66a4d494110da4e97d2660c0.tar.gz
scummvm-rg350-c4528ac022d13fde66a4d494110da4e97d2660c0.tar.bz2
scummvm-rg350-c4528ac022d13fde66a4d494110da4e97d2660c0.zip
More conversion to debug channels
svn-id: r12293
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 3ba8d3fba5..4c7caa4195 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -121,11 +121,14 @@ struct dbgChannelDesc {
};
enum {
- DEBUG_SCRIPTS = 1 << 0, // Track script execution (start/stop/pause)
- DEBUG_OPCODES = 1 << 1, // Track opcode invocations
- DEBUG_IMUSE = 1 << 2, // Track iMUSE events
- DEBUG_RESOURCE = 1 << 3, // Track resource loading / allocation
- DEBUG_VARS = 1 << 4 // Track variable changes
+ DEBUG_GENERAL = 1 << 0, // General debug
+ DEBUG_SCRIPTS = 1 << 2, // Track script execution (start/stop/pause)
+ DEBUG_OPCODES = 1 << 3, // Track opcode invocations
+ DEBUG_VARS = 1 << 4, // Track variable changes
+ DEBUG_RESOURCE = 1 << 5, // Track resource loading / allocation
+ DEBUG_IMUSE = 1 << 6, // Track iMUSE events
+ DEBUG_SOUND = 1 << 7, // General Sound Debug
+ DEBUG_ACTORS = 1 << 8 // General Actor Debug
};
@@ -135,7 +138,8 @@ static const dbgChannelDesc debugChannels[] = {
{"OPCODES", "Track opcode execution", DEBUG_OPCODES},
{"IMUSE", "Track iMUSE events", DEBUG_IMUSE},
{"RESOURCE", "Track resource loading/management", DEBUG_RESOURCE},
- {"VARS", "Track variable changes", DEBUG_VARS}
+ {"VARS", "Track variable changes", DEBUG_VARS},
+ {"ACTORS", "Actor-related debug", DEBUG_ACTORS}
};
struct MemBlkHeader {