diff options
author | athrxx | 2019-02-27 22:53:02 +0100 |
---|---|---|
committer | athrxx | 2019-03-06 20:48:27 +0100 |
commit | 010a79099eebe051d42f90b8f99d5342ae0fe249 (patch) | |
tree | 389fd9114f7c8ef927d36911b386f929578f4212 /engines | |
parent | 1cb85808318cc560a045068b48d981d1695ed4bc (diff) | |
download | scummvm-rg350-010a79099eebe051d42f90b8f99d5342ae0fe249.tar.gz scummvm-rg350-010a79099eebe051d42f90b8f99d5342ae0fe249.tar.bz2 scummvm-rg350-010a79099eebe051d42f90b8f99d5342ae0fe249.zip |
KYRA: (EOB1/Amiga) - fix invisible character display
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/gui/gui_eob.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/gui/gui_eob.cpp b/engines/kyra/gui/gui_eob.cpp index ae787a5df6..005c67cb25 100644 --- a/engines/kyra/gui/gui_eob.cpp +++ b/engines/kyra/gui/gui_eob.cpp @@ -241,8 +241,8 @@ void EoBCoreEngine::gui_drawFaceShape(int index) { } if (_flags.gameID == GI_EOB1) { - if (c->effectFlags & 4) { - _screen->fillRect(x, y, x + 31, y + 31, 12); + if (c->effectFlags & 0x40) { + _screen->fillRect(x, y, x + 31, y + 31, guiSettings()->colors.guiColorBlack); return; } } else { |