aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.h
diff options
context:
space:
mode:
authorTravis Howell2004-08-22 09:14:19 +0000
committerTravis Howell2004-08-22 09:14:19 +0000
commit2e3833dc1f3dc889f92e90450ebeb89b622377b2 (patch)
tree7d043c7e3f289efd57a3806115b0fe7a197c6850 /scumm/scumm.h
parent12dc81cdbfbc90d71ac0fcd1c07814dc6bf964ce (diff)
downloadscummvm-rg350-2e3833dc1f3dc889f92e90450ebeb89b622377b2.tar.gz
scummvm-rg350-2e3833dc1f3dc889f92e90450ebeb89b622377b2.tar.bz2
scummvm-rg350-2e3833dc1f3dc889f92e90450ebeb89b622377b2.zip
Switch smush debug to channel
svn-id: r14676
Diffstat (limited to 'scumm/scumm.h')
-rw-r--r--scumm/scumm.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/scumm/scumm.h b/scumm/scumm.h
index feeeae10b3..c25e8e9c25 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -153,7 +153,8 @@ enum {
DEBUG_IMUSE = 1 << 6, // Track iMUSE events
DEBUG_SOUND = 1 << 7, // General Sound Debug
DEBUG_ACTORS = 1 << 8, // General Actor Debug
- DEBUG_INSANE = 1 << 9 // Track INSANE
+ DEBUG_INSANE = 1 << 9, // Track INSANE
+ DEBUG_SMUSH = 1 << 10 // Track SMUSH
};
@@ -166,7 +167,8 @@ static const dbgChannelDesc debugChannels[] = {
{"VARS", "Track variable changes", DEBUG_VARS},
{"ACTORS", "Actor-related debug", DEBUG_ACTORS},
{"SOUND", "Sound related debug", DEBUG_SOUND},
- {"INSANE", "Track INSANE", DEBUG_INSANE}
+ {"INSANE", "Track INSANE", DEBUG_INSANE},
+ {"SMUSH", "Track SMUSH", DEBUG_SMUSH}
};
struct MemBlkHeader {