SHERLOCK: RT: Fix German umlaut display in Journal

This commit is contained in:
Paul Gilbert 2016-02-09 20:39:45 -05:00
parent fb90140bee
commit 1e560fd234

View File

@ -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;