aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMartin Kiewitz2010-10-15 21:16:36 +0000
committerMartin Kiewitz2010-10-15 21:16:36 +0000
commit9cc51096c08feb7102d09fb08f4b3a3e1cd41dcb (patch)
tree70ec64220289f9b9b8b203e188673b58d0f7eaaf /engines
parente868dcd804ce053ca6813e8976570bdc042fead9 (diff)
downloadscummvm-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')
-rw-r--r--engines/sci/graphics/view.cpp3
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;