aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-20 01:00:26 +0300
committerEugene Sandulenko2013-09-06 14:51:03 +0300
commit69fc7a38bb387c3590d9a32855442e1579ff8a4e (patch)
treebd80a7a6a1c5295c32f9a85762cfbe42c298ac1e /engines/fullpipe/gfx.cpp
parent8f0ff728e49d2b31c392471881db2bb20829d7ab (diff)
downloadscummvm-rg350-69fc7a38bb387c3590d9a32855442e1579ff8a4e.tar.gz
scummvm-rg350-69fc7a38bb387c3590d9a32855442e1579ff8a4e.tar.bz2
scummvm-rg350-69fc7a38bb387c3590d9a32855442e1579ff8a4e.zip
FULLPIPE: Continued scene drawing
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 10bf10543a..9cef7e1408 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -373,8 +373,8 @@ void Picture::displayPicture() {
}
void Bitmap::putDib(int x, int y, int32 *palette) {
- _x = x;
- _y = y;
+ _x = x - g_fullpipe->_sceneRect.left;
+ _y = y - g_fullpipe->_sceneRect.top;
if (_type == MKTAG('R', 'B', '\0', '\0'))
putDibRB(palette);