diff options
author | Johannes Schickel | 2010-06-27 21:04:47 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-27 21:04:47 +0000 |
commit | 819dc92802d330a27066b755854cba7169b8dfad (patch) | |
tree | 49982e1d20def2a3de5d29e656a540bb7af25d31 | |
parent | 2843feeb9a4d031eaacc896da0045877fd048004 (diff) | |
download | scummvm-rg350-819dc92802d330a27066b755854cba7169b8dfad.tar.gz scummvm-rg350-819dc92802d330a27066b755854cba7169b8dfad.tar.bz2 scummvm-rg350-819dc92802d330a27066b755854cba7169b8dfad.zip |
Escape a "?" character to prevent "??)" to be interpreted as trigraph and thus becoming "]".
svn-id: r50399
-rw-r--r-- | engines/sci/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/console.cpp b/engines/sci/console.cpp index b837c7b92b..4bc68fd813 100644 --- a/engines/sci/console.cpp +++ b/engines/sci/console.cpp @@ -3237,7 +3237,7 @@ void Console::printBasicVarInfo(reg_t variable) { DebugPrintf(" (list)"); break; default: - DebugPrintf(" (???)"); + DebugPrintf(" (??\?)"); } } |