diff options
author | Martin Kiewitz | 2009-10-14 10:02:23 +0000 |
---|---|---|
committer | Martin Kiewitz | 2009-10-14 10:02:23 +0000 |
commit | ec25df8e2356fad682d84fa1eb4b1e5e6815ae25 (patch) | |
tree | caf9140857a0558b7578f96453878e55f9e2ec9b /engines | |
parent | 947d3ab5d47f974832955d75a466a9199f928d92 (diff) | |
download | scummvm-rg350-ec25df8e2356fad682d84fa1eb4b1e5e6815ae25.tar.gz scummvm-rg350-ec25df8e2356fad682d84fa1eb4b1e5e6815ae25.tar.bz2 scummvm-rg350-ec25df8e2356fad682d84fa1eb4b1e5e6815ae25.zip |
SCI/newgui: another change to floodfill, fixes jones/vga
svn-id: r45063
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/gui/gui_picture.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/gui/gui_picture.cpp b/engines/sci/gui/gui_picture.cpp index 78ea02fef3..82dabbb74e 100644 --- a/engines/sci/gui/gui_picture.cpp +++ b/engines/sci/gui/gui_picture.cpp @@ -585,7 +585,7 @@ void SciGuiPicture::vectorFloodFill(int16 x, int16 y, byte color, byte priority, // This logic was taken directly from sierra sci, floodfill will get aborted on various occations if (screenMask & SCI_SCREEN_MASK_VISUAL) { if (_resMan->isVGA()) { - if ((color == 255) || (searchColor != 255)) + if ((color == 255) || (searchColor != 0)) return; } else { if ((color == 15) || (searchColor != 15)) |