aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.h
diff options
context:
space:
mode:
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);