diff options
-rw-r--r-- | engines/fullpipe/gfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/gfx.cpp b/engines/fullpipe/gfx.cpp index 75366f5834..d41505e2f1 100644 --- a/engines/fullpipe/gfx.cpp +++ b/engines/fullpipe/gfx.cpp @@ -707,7 +707,7 @@ int Picture::getPixelAtPosEx(int x, int y) { warning("STUB: Picture::getPixelAtPosEx(%d, %d)", x, y); - // It looks like this doesn't really work. TODO. FIXME + // TODO: It looks like this doesn't really work. if (x < (g_fp->_pictureScale + _width - 1) / g_fp->_pictureScale && y < (g_fp->_pictureScale + _height - 1) / g_fp->_pictureScale && _memoryObject2 != 0 && _memoryObject2->_rows != 0) |