aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v2.cpp
diff options
context:
space:
mode:
authorTravis Howell2007-02-25 07:28:40 +0000
committerTravis Howell2007-02-25 07:28:40 +0000
commit0c208657eea590177cd9d907dd5d4a5be41aff4e (patch)
treea0e1c1bd6e95a3f73b5a6f1873309759c5e6a771 /engines/scumm/script_v2.cpp
parentfdc61643f4fc16213a6c76aa807f83597550ff7a (diff)
downloadscummvm-rg350-0c208657eea590177cd9d907dd5d4a5be41aff4e.tar.gz
scummvm-rg350-0c208657eea590177cd9d907dd5d4a5be41aff4e.tar.bz2
scummvm-rg350-0c208657eea590177cd9d907dd5d4a5be41aff4e.zip
Remove left over debug output.
svn-id: r25848
Diffstat (limited to 'engines/scumm/script_v2.cpp')
-rw-r--r--engines/scumm/script_v2.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/engines/scumm/script_v2.cpp b/engines/scumm/script_v2.cpp
index d28e90b12f..a71e2596b4 100644
--- a/engines/scumm/script_v2.cpp
+++ b/engines/scumm/script_v2.cpp
@@ -801,8 +801,6 @@ void ScummEngine_v2::o2_verbOps() {
case 0: // SO_DELETE_VERBS
slot = getVarOrDirectByte(PARAM_1) + 1;
assert(0 < slot && slot < _numVerbs);
-
- //printf("o2_verbOps delete slot = %d\n", slot);
killVerb(slot);
break;
@@ -810,11 +808,7 @@ void ScummEngine_v2::o2_verbOps() {
verb = fetchScriptByte();
state = fetchScriptByte();
slot = getVerbSlot(verb, 0);
-
- //printf("o2_verbOps Verb On/Off: verb = %d, slot = %d, state = %d\n", verb, slot, state);
-
_verbs[slot].curmode = state;
-
break;
default: { // New Verb
@@ -828,9 +822,6 @@ void ScummEngine_v2::o2_verbOps() {
else if ((_game.id == GID_MANIAC) && (_game.version == 1))
y += 8;
- //printf("o2_verbOps: verb = %d, slot = %d, x = %d, y = %d, unk = %d, name = %s\n",
- // verb, slot, x, y, prep, _scriptPointer);
-
VerbSlot *vs;
assert(0 < slot && slot < _numVerbs);
@@ -1617,7 +1608,6 @@ void ScummEngine_v2::o2_dummy() {
}
void ScummEngine_v2::o2_switchCostumeSet() {
- printf("o2_switchCostumeSet\n");
// NES version of maniac uses this to switch between the two
// groups of costumes it has
if (_game.platform == Common::kPlatformNES)