diff options
author | Martin Kiewitz | 2010-10-15 21:16:36 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-10-15 21:16:36 +0000 |
commit | 9cc51096c08feb7102d09fb08f4b3a3e1cd41dcb (patch) | |
tree | 70ec64220289f9b9b8b203e188673b58d0f7eaaf /engines/sci/graphics | |
parent | e868dcd804ce053ca6813e8976570bdc042fead9 (diff) | |
download | scummvm-rg350-9cc51096c08feb7102d09fb08f4b3a3e1cd41dcb.tar.gz scummvm-rg350-9cc51096c08feb7102d09fb08f4b3a3e1cd41dcb.tar.bz2 scummvm-rg350-9cc51096c08feb7102d09fb08f4b3a3e1cd41dcb.zip |
SCI: updating comment for r53515
svn-id: r53517
Diffstat (limited to 'engines/sci/graphics')
-rw-r--r-- | engines/sci/graphics/view.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/graphics/view.cpp b/engines/sci/graphics/view.cpp index 943e51654b..773822854b 100644 --- a/engines/sci/graphics/view.cpp +++ b/engines/sci/graphics/view.cpp @@ -543,7 +543,8 @@ void GfxView::unditherBitmap(byte *bitmapPtr, int16 width, int16 height, byte cl memset(&bitmapMemorial, 0, sizeof(bitmapMemorial)); // Count all seemingly dithered pixel-combinations as soon as at least 4 - // pixels are adjacent + // pixels are adjacent and check pixels in the following line as well to + // be the reverse pixel combination int16 checkHeight = height - 1; curPtr = bitmapPtr; byte *nextPtr = curPtr + width; |