From d57c9f20213e66539fc7686a8b8abc26090aaa59 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 1 Feb 2015 15:24:12 -0500 Subject: XEEN: Fixes to the Character Info dialog --- engines/xeen/dialogs_char_info.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/xeen/dialogs_char_info.cpp') diff --git a/engines/xeen/dialogs_char_info.cpp b/engines/xeen/dialogs_char_info.cpp index 9fedb56fcf..1c0d0bfe31 100644 --- a/engines/xeen/dialogs_char_info.cpp +++ b/engines/xeen/dialogs_char_info.cpp @@ -88,9 +88,9 @@ void CharacterInfo::execute(int charIndex) { charIndex = _buttonValue; c = (oldMode != MODE_InCombat) ? &party._activeParty[charIndex] : party._combatParty[charIndex]; } else { - _iconSprites.load("view.icn"); _vm->_mode = MODE_CHARACTER_INFO; } + redrawFlag = true; break; case Common::KEYCODE_UP: @@ -290,7 +290,7 @@ Common::String CharacterInfo::loadCharacterDetails(const Character &c) { RACE_NAMES[c._race], CLASS_NAMES[c._class], c.statColor(c.getStat(MIGHT), c.getStat(MIGHT, true)), c.getStat(MIGHT), c.statColor(c.getStat(ACCURACY), c.getStat(ACCURACY, true)), c.getStat(ACCURACY), - c.statColor(c._currentHp, c.getMaxHP()), + c.statColor(c._currentHp, c.getMaxHP()), c._currentHp, c.getCurrentExperience(), c.statColor(c.getStat(INTELLECT), c.getStat(INTELLECT, true)), c.getStat(INTELLECT), c.statColor(c.getStat(LUCK), c.getStat(LUCK, true)), c.getStat(LUCK), -- cgit v1.2.3