diff options
author | Paul Gilbert | 2015-02-17 21:57:50 -0500 |
---|---|---|
committer | Paul Gilbert | 2015-02-17 21:57:50 -0500 |
commit | 1d5d98e898cf132a102ef3b1953af31f53da79cc (patch) | |
tree | 1226fcb089b74ee1623266df5abe3d175600e7ae | |
parent | 7b3c10b09c76c4a8cbd5dbfabb0ceeaeccbbce26 (diff) | |
download | scummvm-rg350-1d5d98e898cf132a102ef3b1953af31f53da79cc.tar.gz scummvm-rg350-1d5d98e898cf132a102ef3b1953af31f53da79cc.tar.bz2 scummvm-rg350-1d5d98e898cf132a102ef3b1953af31f53da79cc.zip |
XEEN: Fix display of buttons in Cast Spell window
-rw-r--r-- | engines/xeen/dialogs_spells.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/dialogs_spells.cpp b/engines/xeen/dialogs_spells.cpp index fe249d263e..8688ffe5a6 100644 --- a/engines/xeen/dialogs_spells.cpp +++ b/engines/xeen/dialogs_spells.cpp @@ -469,7 +469,6 @@ int CastSpell::execute(Character *c, int mode) { w.open(); loadButtons(); - drawButtons(&screen); int spellId = -1; bool redrawFlag = true; @@ -483,6 +482,7 @@ int CastSpell::execute(Character *c, int mode) { w.writeString(Common::String::format(CAST_SPELL_DETAILS, c->_name.c_str(), spells._spellNames[spellId].c_str(), spCost, gemCost, c->_currentSp)); + drawButtons(&screen); w.update(); _vm->_mode = MODE_3; |