aboutsummaryrefslogtreecommitdiff
path: root/engines/prince/graphics.cpp
diff options
context:
space:
mode:
authorlukaslw2014-06-01 02:58:27 +0200
committerlukaslw2014-06-22 20:08:31 +0200
commit6f19bd82f48ffb7c9f772c8b3112449df36ce6eb (patch)
treeda4a238633cc5f29598a1e9c10800a4cb8976099 /engines/prince/graphics.cpp
parent9933505bf5ed72894bfa696ae5b2d4085dc1c242 (diff)
downloadscummvm-rg350-6f19bd82f48ffb7c9f772c8b3112449df36ce6eb.tar.gz
scummvm-rg350-6f19bd82f48ffb7c9f772c8b3112449df36ce6eb.tar.bz2
scummvm-rg350-6f19bd82f48ffb7c9f772c8b3112449df36ce6eb.zip
PRINCE: Object class update, showObjects() beginning
Diffstat (limited to 'engines/prince/graphics.cpp')
-rw-r--r--engines/prince/graphics.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/prince/graphics.cpp b/engines/prince/graphics.cpp
index 46c52a86ca..679885f7b8 100644
--- a/engines/prince/graphics.cpp
+++ b/engines/prince/graphics.cpp
@@ -101,6 +101,7 @@ void GraphicsMan::drawMask(int32 posX, int32 posY, int32 width, int32 height, by
if ((maskData[tempMaskPostion] & maskCounter) != 0) {
byte orgPixel = *((byte*)originalRoomSurface->getBasePtr(x + posX, y + posY));
*((byte*)_frontScreen->getBasePtr(x + posX, y + posY)) = orgPixel;
+ //*((byte*)_frontScreen->getBasePtr(x + posX, y + posY)) = 0; // for debugging
}
}
}