Skip to content

Commit

Permalink
XEEN: Fix Direction Sense display
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed May 30, 2018
1 parent b191cbf commit d6841ef
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions engines/xeen/interface.cpp
Expand Up @@ -1442,8 +1442,7 @@ void Interface::assembleBorder() {
// Draw direction character if direction sense is active
if (_vm->_party->checkSkill(DIRECTION_SENSE) && !_vm->_noDirectionSense) {
const char *dirText = Res.DIRECTION_TEXT_UPPER[_vm->_party->_mazeDirection];
Common::String msg = Common::String::format(
"\002""08\003""c\013""139\011""116%c\014""d\001", *dirText);
Common::String msg = Common::String::format("\x2\f08\x3""c\v139\t116%c\fd\x1", *dirText);
windows[0].writeString(msg);
}

Expand Down

0 comments on commit d6841ef

Please sign in to comment.