diff options
| -rw-r--r-- | engines/scumm/string.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp index a29d36e765..3e75cc2f66 100644 --- a/engines/scumm/string.cpp +++ b/engines/scumm/string.cpp @@ -1107,8 +1107,7 @@ int ScummEngine::convertMessageToString(const byte *msg, byte *dst, int dstSize) num += (_game.version == 8) ? 4 : 2; } } else { - if (!(chr == '@' && _game.heversion <= 71) || - (_game.id == GID_CMI && _language == Common::ZH_TWN) || + if ((_game.id == GID_CMI && _language == Common::ZH_TWN) || (_game.id == GID_LOOM && _game.platform == Common::kPlatformPCEngine && _language == Common::JA_JPN)) { *dst++ = chr; |
