aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorNicola Mettifogo2007-08-14 19:55:10 +0000
committerNicola Mettifogo2007-08-14 19:55:10 +0000
commitdc35b37d9325937b3ece7bfb57c527462790614b (patch)
tree4bec29dab7a6923c166d20468f06dfbec3d49715 /engines/parallaction
parent70f69a18bb0d807999a873c865fa29c9a9d61a2f (diff)
downloadscummvm-rg350-dc35b37d9325937b3ece7bfb57c527462790614b.tar.gz
scummvm-rg350-dc35b37d9325937b3ece7bfb57c527462790614b.tar.bz2
scummvm-rg350-dc35b37d9325937b3ece7bfb57c527462790614b.zip
Oops. Removed debug code.
svn-id: r28622
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/callables_ns.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/engines/parallaction/callables_ns.cpp b/engines/parallaction/callables_ns.cpp
index 3c32b6f58f..2e91ef2787 100644
--- a/engines/parallaction/callables_ns.cpp
+++ b/engines/parallaction/callables_ns.cpp
@@ -587,11 +587,7 @@ void zeroMask(int x, int y, int color, void *data) {
//_vm->_gfx->zeroMaskValue(x, y, color);
BackgroundInfo* info = (BackgroundInfo*)data;
-/*
- if (x < 0 || x > 319 || y < 0 || y > 199) {
- printf("zeroMask(%i, %i)\n", x, y);
- }
-*/
+
uint16 _ax = x + y * info->width;
info->mask.data[_ax >> 2] &= ~(3 << ((_ax & 3) << 1));
@@ -620,8 +616,6 @@ void Parallaction_ns::_c_sketch(void *parm) {
newx = _rightHandPositions[2*index];
}
- printf("sketch index = %i\n", index);
-
Graphics::drawLine(oldx, oldy, newx, newy, 0, zeroMask, _backgroundInfo);
_rightHandAnim->_left = newx;