diff options
author | Paul Gilbert | 2018-03-24 21:34:06 -0400 |
---|---|---|
committer | Paul Gilbert | 2018-03-24 21:34:06 -0400 |
commit | d5df6f0d7e70f47cfa76470342a02e5b5c3633d6 (patch) | |
tree | 67af38bf3fc22b50b680f2ae79c40be20ede6d30 /engines | |
parent | ef8109850a15a45e6f7f66ea09f43cb8c8f63534 (diff) | |
download | scummvm-rg350-d5df6f0d7e70f47cfa76470342a02e5b5c3633d6.tar.gz scummvm-rg350-d5df6f0d7e70f47cfa76470342a02e5b5c3633d6.tar.bz2 scummvm-rg350-d5df6f0d7e70f47cfa76470342a02e5b5c3633d6.zip |
XEEN: Fix clipping right edge of current monster highlight box
Diffstat (limited to 'engines')
-rw-r--r-- | engines/xeen/interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/xeen/interface.cpp b/engines/xeen/interface.cpp index 6c7cc3e478..9255af0ce8 100644 --- a/engines/xeen/interface.cpp +++ b/engines/xeen/interface.cpp @@ -1498,7 +1498,7 @@ void Interface::doCombat() { // Write out the description of the monsters being battled w.writeString(combat.getMonsterDescriptions()); _combatIcons.draw(0, 32, Common::Point(233, combat._attackDurationCtr * 10 + 27), - SPRFLAG_800, 1); + SPRFLAG_800, 0); w.update(); // Wait for keypress |