TITANIC: DE: Fix showing accented characters in Chat tab

This commit is contained in:
Paul Gilbert 2017-10-12 21:38:20 -04:00
parent 60eca29f3d
commit b2ebaf008e

View File

@ -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 = ' ';
}