diff options
-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; |