mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-05 01:38:36 +00:00
TITANIC: DE: Fix showing accented characters in Chat tab
This commit is contained in:
parent
60eca29f3d
commit
b2ebaf008e
@ -386,7 +386,7 @@ CString CTrueTalkManager::readDialogueString() {
|
||||
|
||||
// Strip off any non-printable characters
|
||||
for (byte *p = buffer; *p != '\0'; ++p) {
|
||||
if (*p < 32 || *p > 127)
|
||||
if (*p < 32)
|
||||
*p = ' ';
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user