aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.h
diff options
context:
space:
mode:
authorSven Hesse2006-02-24 23:31:31 +0000
committerSven Hesse2006-02-24 23:31:31 +0000
commit1758260c39b454c46770e2f50cf40752d49f0073 (patch)
tree8a18d0fd4fa96c276f4ebbb167a385b7064bf185 /engines/gob/gob.h
parent047298745f4e134a1b1f88d7c6ff824fd7a0dcdf (diff)
downloadscummvm-rg350-1758260c39b454c46770e2f50cf40752d49f0073.tar.gz
scummvm-rg350-1758260c39b454c46770e2f50cf40752d49f0073.tar.bz2
scummvm-rg350-1758260c39b454c46770e2f50cf40752d49f0073.zip
Changed debug()s to debugC()s
svn-id: r20848
Diffstat (limited to 'engines/gob/gob.h')
-rw-r--r--engines/gob/gob.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/engines/gob/gob.h b/engines/gob/gob.h
index 074546ffcb..111e575bd9 100644
--- a/engines/gob/gob.h
+++ b/engines/gob/gob.h
@@ -67,6 +67,18 @@ enum {
GF_MAC = 1 << 5
};
+enum {
+ DEBUG_FUNCOP = 1 << 0,
+ DEBUG_DRAWOP = 1 << 1,
+ DEBUG_GOBOP = 1 << 2,
+ DEBUG_MUSIC = 1 << 3, // CD and adlib music
+ DEBUG_PARSER = 1 << 4,
+ DEBUG_GAMEFLOW = 1 << 5,
+ DEBUG_FILEIO = 1 << 6,
+ DEBUG_GRAPHICS = 1 << 7,
+ DEBUG_COLLISIONS = 1 << 8
+};
+
class GobEngine : public Engine {
void errorString(const char *buf_input, char *buf_output);