mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
SHERLOCK: RT: Fix German umlaut display in Journal
This commit is contained in:
parent
fb90140bee
commit
1e560fd234
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user