aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/vocabulary.h
diff options
context:
space:
mode:
authorFilippos Karapetis2009-06-06 16:43:13 +0000
committerFilippos Karapetis2009-06-06 16:43:13 +0000
commite572811aedc5141189d4c1db9069a9ad564f21dd (patch)
treeb76caa079239e8d749047e5dc680635a9ca18c0f /engines/sci/vocabulary.h
parentcf194d7bb73fd6c4173dbe810c5219e8e4f42a4b (diff)
downloadscummvm-rg350-e572811aedc5141189d4c1db9069a9ad564f21dd.tar.gz
scummvm-rg350-e572811aedc5141189d4c1db9069a9ad564f21dd.tar.bz2
scummvm-rg350-e572811aedc5141189d4c1db9069a9ad564f21dd.zip
Moved some more debug commands to ScummVM's coneole
svn-id: r41227
Diffstat (limited to 'engines/sci/vocabulary.h')
-rw-r--r--engines/sci/vocabulary.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/engines/sci/vocabulary.h b/engines/sci/vocabulary.h
index 9f0d277ef2..ce6d48c570 100644
--- a/engines/sci/vocabulary.h
+++ b/engines/sci/vocabulary.h
@@ -160,9 +160,10 @@ struct parse_tree_branch_t {
int data[10];
};
-#define PARSE_TREE_NODE_LEAF 0
-#define PARSE_TREE_NODE_BRANCH 1
-
+enum ParseTypes {
+ kParseTreeLeafNode = 0,
+ kParseTreeBranchNode = 1
+};
struct parse_tree_node_t {
short type; /* leaf or branch */