aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/gui
diff options
context:
space:
mode:
authorathrxx2019-03-25 22:00:16 +0100
committerathrxx2019-04-13 18:55:00 +0200
commitcbe81aa021bab1082ee6a652cbd15fe323ea2069 (patch)
treeec4c372d170c5e19545bbd073e3d911487b15dda /engines/kyra/gui
parent02000cfe371784fe5eb46e063a0391fa1ec2001f (diff)
downloadscummvm-rg350-cbe81aa021bab1082ee6a652cbd15fe323ea2069.tar.gz
scummvm-rg350-cbe81aa021bab1082ee6a652cbd15fe323ea2069.tar.bz2
scummvm-rg350-cbe81aa021bab1082ee6a652cbd15fe323ea2069.zip
KYRA: (EOB2/Amiga) - fix GUI colors
Diffstat (limited to 'engines/kyra/gui')
-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 005c67cb25..bfde732ffe 100644
--- a/engines/kyra/gui/gui_eob.cpp
+++ b/engines/kyra/gui/gui_eob.cpp
@@ -368,7 +368,7 @@ void EoBCoreEngine::gui_drawHitpoints(int index) {
y = 16;
w = 51;
h = 5;
- if (_flags.platform == Common::kPlatformAmiga)
+ if (_flags.platform == Common::kPlatformAmiga && _flags.gameID == GI_EOB1)
bgCol = guiSettings()->colors.sfill;
}
@@ -4327,7 +4327,7 @@ void GUI_EoB::restParty_updateRestTime(int hours, bool init) {
_vm->_txt->clearCurDim();
drawMenuButtonBox(_screen->_curDim->sx << 3, _screen->_curDim->sy, _screen->_curDim->w << 3, _screen->_curDim->h, false, false);
_screen->copyRegion(_screen->_curDim->sx << 3, _screen->_curDim->sy, _screen->_curDim->sx << 3, _screen->_curDim->sy, _screen->_curDim->w << 3, _screen->_curDim->h, 0, 2, Screen::CR_NO_P_CHECK);
- _screen->printShadedText(getMenuString(42), (_screen->_curDim->sx + 1) << 3, _screen->_curDim->sy + 5, 9, 0, _vm->guiSettings()->colors.guiColorBlack);
+ _screen->printShadedText(getMenuString(42), (_screen->_curDim->sx + 1) << 3, _screen->_curDim->sy + 5, _vm->guiSettings()->colors.guiColorLightBlue, 0, _vm->guiSettings()->colors.guiColorBlack);
}
_screen->setCurPage(0);