diff options
Diffstat (limited to 'engines/lilliput/script.cpp')
-rw-r--r-- | engines/lilliput/script.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/lilliput/script.cpp b/engines/lilliput/script.cpp index 5caae8a3d5..85bb07f6e0 100644 --- a/engines/lilliput/script.cpp +++ b/engines/lilliput/script.cpp @@ -1303,7 +1303,7 @@ int16 LilliputScript::getValue1() { } Common::Point LilliputScript::getPosFromScript() { - debugC(2, kDebugScriptTBC, "getPosFromScript()"); + debugC(2, kDebugScript, "getPosFromScript()"); int curWord = _currScript->readUint16LE(); int tmpVal = curWord >> 8; @@ -1355,7 +1355,7 @@ Common::Point LilliputScript::getPosFromScript() { return _vm->_savedMousePosDivided; default: Common::Point pos = Common::Point(curWord >> 8, curWord & 0xFF); - //warning("getPosFromScript - High value %d -> %d %d", curWord, pos.x, pos.y); + // warning("getPosFromScript - High value %d -> %d %d", curWord, pos.x, pos.y); return pos; } } @@ -3059,7 +3059,7 @@ void LilliputScript::OC_sub17E22_speech1IfSoundOff() { } void LilliputScript::OC_sub1844A() { - debugC(1, kDebugScriptTBC, "OC_sub1847F()"); + debugC(1, kDebugScriptTBC, "OC_sub1844A()"); int var1 = getValue1(); int var2 = _currScript->readUint16LE(); |