aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/parse_v2.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2007-01-13 15:35:02 +0000
committerEugene Sandulenko2007-01-13 15:35:02 +0000
commit24c9735588ac8d914b8f058cf68373b4e9a67071 (patch)
tree7100d5cb797f0c71eda254feb084ab49ed534c02 /engines/gob/parse_v2.cpp
parentbad2b283c12e09eaa3c72f9ca67913b2a14afd03 (diff)
downloadscummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.tar.gz
scummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.tar.bz2
scummvm-rg350-24c9735588ac8d914b8f058cf68373b4e9a67071.zip
Rename special debug levels to conform our suggested naming scheme.
svn-id: r25073
Diffstat (limited to 'engines/gob/parse_v2.cpp')
-rw-r--r--engines/gob/parse_v2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/gob/parse_v2.cpp b/engines/gob/parse_v2.cpp
index 23cd980691..bb3b6802af 100644
--- a/engines/gob/parse_v2.cpp
+++ b/engines/gob/parse_v2.cpp
@@ -45,7 +45,7 @@ int16 Parse_v2::parseVarIndex() {
int16 val;
operation = *_vm->_global->_inter_execPtr++;
- debugC(5, DEBUG_PARSER, "var parse = %d", operation);
+ debugC(5, kDebugParser, "var parse = %d", operation);
switch (operation) {
case 16:
case 26:
@@ -84,12 +84,12 @@ int16 Parse_v2::parseVarIndex() {
case 24:
case 25:
temp = _vm->_inter->load16() * 4;
- debugC(5, DEBUG_PARSER, "oper = %d", (int16)*_vm->_global->_inter_execPtr);
+ debugC(5, kDebugParser, "oper = %d", (int16)*_vm->_global->_inter_execPtr);
if (operation == 25 && *_vm->_global->_inter_execPtr == 13) {
_vm->_global->_inter_execPtr++;
val = parseValExpr(12);
temp += val;
- debugC(5, DEBUG_PARSER, "parse subscript = %d", val);
+ debugC(5, kDebugParser, "parse subscript = %d", val);
}
return temp;
@@ -339,7 +339,7 @@ int16 Parse_v2::parseValExpr(unsigned stopToken) {
if (operation != 10) {
if (operation != stopToken) {
- debugC(5, DEBUG_PARSER, "stoptoken error: %d != %d", operation, stopToken);
+ debugC(5, kDebugParser, "stoptoken error: %d != %d", operation, stopToken);
}
flag = oldflag;
return values[0];