diff options
author | athrxx | 2019-03-20 22:03:04 +0100 |
---|---|---|
committer | athrxx | 2019-03-22 21:03:54 +0100 |
commit | 864cdd85f483824e765a4b35d658ef4c2f4506df (patch) | |
tree | 088e691b7b1bc3984770ded77f7d2b192709a9e8 /engines/kyra/gui | |
parent | 1cfa6c087a88eb795dc0ae46cbeb5a578318a317 (diff) | |
download | scummvm-rg350-864cdd85f483824e765a4b35d658ef4c2f4506df.tar.gz scummvm-rg350-864cdd85f483824e765a4b35d658ef4c2f4506df.tar.bz2 scummvm-rg350-864cdd85f483824e765a4b35d658ef4c2f4506df.zip |
KYRA: silence some compiler warnings
Diffstat (limited to 'engines/kyra/gui')
-rw-r--r-- | engines/kyra/gui/debugger.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/gui/debugger.cpp b/engines/kyra/gui/debugger.cpp index f8fa7f8502..2003c2fbde 100644 --- a/engines/kyra/gui/debugger.cpp +++ b/engines/kyra/gui/debugger.cpp @@ -642,7 +642,7 @@ bool Debugger_EoB::cmdPrintMap(int, const char **) { if (s == 3 || s == 4) c = '/'; else if (s == 2 || s == 8) - c = (uint8)'°'; + c = 176; else if (f & 8) c = 216; else if (f & 1) @@ -661,7 +661,7 @@ bool Debugger_EoB::cmdPrintMap(int, const char **) { debugPrintf("%c", c); } - debugPrintf("\n\nParty Position: %c Door: %c Stairs Up/Down: %c/%c Plate: %c Hole: %c\nSwitch: %c Clickable Object: %c Illusion Wall: %c Teleporter: %c\n\n", 'X', 216, 'U', 'D', 'O', 164, '/', '°', 15, 1); + debugPrintf("\n\nParty Position: %c Door: %c Stairs Up/Down: %c/%c Plate: %c Hole: %c\nSwitch: %c Clickable Object: %c Illusion Wall: %c Teleporter: %c\n\n", 'X', 216, 'U', 'D', 'O', 164, '/', 176, 15, 1); return true; } |