[Scummvm-git-logs] scummvm master -> d6841efd63d91750e210bce90f92b44f0e326abd

dreammaster dreammaster at scummvm.org
Thu May 31 00:51:45 CEST 2018


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
d6841efd63 XEEN: Fix Direction Sense display


Commit: d6841efd63d91750e210bce90f92b44f0e326abd
    https://github.com/scummvm/scummvm/commit/d6841efd63d91750e210bce90f92b44f0e326abd
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-05-30T18:51:40-04:00

Commit Message:
XEEN: Fix Direction Sense display

Changed paths:
    engines/xeen/interface.cpp


diff --git a/engines/xeen/interface.cpp b/engines/xeen/interface.cpp
index 5221a9e..82a2cbd 100644
--- a/engines/xeen/interface.cpp
+++ b/engines/xeen/interface.cpp
@@ -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);
 	}
 





More information about the Scummvm-git-logs mailing list