aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorathrxx2019-02-27 22:53:02 +0100
committerathrxx2019-03-06 20:48:27 +0100
commit010a79099eebe051d42f90b8f99d5342ae0fe249 (patch)
tree389fd9114f7c8ef927d36911b386f929578f4212 /engines/kyra
parent1cb85808318cc560a045068b48d981d1695ed4bc (diff)
downloadscummvm-rg350-010a79099eebe051d42f90b8f99d5342ae0fe249.tar.gz
scummvm-rg350-010a79099eebe051d42f90b8f99d5342ae0fe249.tar.bz2
scummvm-rg350-010a79099eebe051d42f90b8f99d5342ae0fe249.zip
KYRA: (EOB1/Amiga) - fix invisible character display
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/gui/gui_eob.cpp4
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 {