diff options
author | Colin Snover | 2017-11-12 13:48:08 -0600 |
---|---|---|
committer | Eugene Sandulenko | 2017-11-18 22:35:12 +0100 |
commit | cc905d7f9a4be668c3fc1e8090cb996feea9b8f3 (patch) | |
tree | 822134bd402b71acf6b1046ee38533a7ef54e493 | |
parent | 0cc0b1932e7feb97b15810ed9748a55a20947763 (diff) | |
download | scummvm-rg350-cc905d7f9a4be668c3fc1e8090cb996feea9b8f3.tar.gz scummvm-rg350-cc905d7f9a4be668c3fc1e8090cb996feea9b8f3.tar.bz2 scummvm-rg350-cc905d7f9a4be668c3fc1e8090cb996feea9b8f3.zip |
FULLPIPE: Make TODO labelled so it is picked up by tools
-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) |