aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/gfx.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2016-09-07 10:36:51 +0200
committerEugene Sandulenko2016-09-07 10:36:51 +0200
commit5dddde199fef11650f635c666dd797df011fcdb3 (patch)
tree89a77d6b2fdda0049c27a3aeeb6651d0921b417e /engines/fullpipe/gfx.cpp
parentb4153bef61519bbb16e99eda89d2faae8bf10c73 (diff)
downloadscummvm-rg350-5dddde199fef11650f635c666dd797df011fcdb3.tar.gz
scummvm-rg350-5dddde199fef11650f635c666dd797df011fcdb3.tar.bz2
scummvm-rg350-5dddde199fef11650f635c666dd797df011fcdb3.zip
FULLPIPE: Further work on the hangers in scene09
Diffstat (limited to 'engines/fullpipe/gfx.cpp')
-rw-r--r--engines/fullpipe/gfx.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp
index 547b6cf5db..de0faf071e 100644
--- a/engines/fullpipe/gfx.cpp
+++ b/engines/fullpipe/gfx.cpp
@@ -749,6 +749,9 @@ int Picture::getPixelAtPosEx(int x, int y) {
if (x < 0 || y < 0)
return 0;
+ warning("STUB: Picture::getPixelAtPosEx(%d, %d)", x, y);
+
+ // It looks like this doesn't really work. TODO. FIXME
if (x < (g_fp->_pictureScale + _width - 1) / g_fp->_pictureScale &&
y < (g_fp->_pictureScale + _height - 1) / g_fp->_pictureScale &&
_memoryObject2 != 0 && _memoryObject2->_rows != 0)