aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/hopkins.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hopkins/hopkins.h')
-rw-r--r--engines/hopkins/hopkins.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/engines/hopkins/hopkins.h b/engines/hopkins/hopkins.h
index 7af7f962b3..86f15cc7cb 100644
--- a/engines/hopkins/hopkins.h
+++ b/engines/hopkins/hopkins.h
@@ -59,14 +59,6 @@
*/
namespace Hopkins {
-enum {
- kHopkinsDebugAnimations = 1 << 0,
- kHopkinsDebugActions = 1 << 1,
- kHopkinsDebugSound = 1 << 2,
- kHopkinsDebugMusic = 1 << 3,
- kHopkinsDebugScripts = 1 << 4
-};
-
#define DEBUG_BASIC 1
#define DEBUG_INTERMEDIATE 2
#define DEBUG_DETAILED 3
@@ -74,6 +66,10 @@ enum {
#define SCREEN_WIDTH 640
#define SCREEN_HEIGHT 480
+enum HopkinsDebugChannels {
+ kDebugPath = 1 << 0
+};
+
/**
* A wrapper macro used around three character constants, like 'END', to
* ensure portability. Typical usage: MKTAG24('E','N','D').