From 1cedb61c8ccd9f30372452c7b0f01cf0dab25157 Mon Sep 17 00:00:00 2001 From: athrxx Date: Fri, 22 Feb 2019 15:47:05 +0100 Subject: KYRA: (EOB1) - fix slow poison status display (in the character tab it would still say "poisoned" instead of "poisoned (slow)") --- engines/kyra/gui/gui_eob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/kyra/gui/gui_eob.cpp b/engines/kyra/gui/gui_eob.cpp index 41703ca722..bfe338bccb 100644 --- a/engines/kyra/gui/gui_eob.cpp +++ b/engines/kyra/gui/gui_eob.cpp @@ -139,7 +139,7 @@ void EoBCoreEngine::gui_drawCharPortraitWithStats(int index) { _screen->printShadedText(_characterGuiStringsSt[1], 247, 158, guiSettings()->colors.menuTxtColLightRed, guiSettings()->colors.sfill, guiSettings()->colors.menuTxtColBlack); else if (c->hitPointsCur < 1) _screen->printShadedText(_characterGuiStringsSt[2], 226, 158, guiSettings()->colors.menuTxtColLightRed, guiSettings()->colors.sfill, guiSettings()->colors.menuTxtColBlack); - else if (c->effectFlags & (_flags.gameID == GI_EOB1 ? 0x80 : 0x2000)) + else if (c->effectFlags & 0x2000) _screen->printShadedText(_characterGuiStringsSt[3], 220, 158, guiSettings()->colors.menuTxtColLightRed, guiSettings()->colors.sfill, guiSettings()->colors.menuTxtColBlack); else if (c->flags & 2) _screen->printShadedText(_characterGuiStringsSt[4], 235, 158, guiSettings()->colors.menuTxtColLightRed, guiSettings()->colors.sfill, guiSettings()->colors.menuTxtColBlack); -- cgit v1.2.3