diff options
author | Paul Gilbert | 2016-02-09 20:39:45 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-02-09 20:39:45 -0500 |
commit | 1e560fd23465fabebe5d873e529a67aa421ab9d7 (patch) | |
tree | bab96fd4c9a3d1f0a42e017e6d21e02567c1e58f | |
parent | fb90140beeaf60440dd1dc2ad0dcfca79968f92b (diff) | |
download | scummvm-rg350-1e560fd23465fabebe5d873e529a67aa421ab9d7.tar.gz scummvm-rg350-1e560fd23465fabebe5d873e529a67aa421ab9d7.tar.bz2 scummvm-rg350-1e560fd23465fabebe5d873e529a67aa421ab9d7.zip |
SHERLOCK: RT: Fix German umlaut display in Journal
-rw-r--r-- | engines/sherlock/journal.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/sherlock/journal.cpp b/engines/sherlock/journal.cpp index 66f91c3a78..155dfdeba1 100644 --- a/engines/sherlock/journal.cpp +++ b/engines/sherlock/journal.cpp @@ -803,8 +803,7 @@ bool Journal::isPrintable(byte ch) const { if (ch < opcodes[0]) return true; - if (_vm->getGameID() == GType_SerratedScalpel && _vm->getLanguage() == Common::DE_DEU - && ch >= 0xe0) + if (_vm->getLanguage() == Common::DE_DEU && ch >= 0xe0) return true; return false; |