diff options
author | Travis Howell | 2009-11-22 13:37:33 +0000 |
---|---|---|
committer | Travis Howell | 2009-11-22 13:37:33 +0000 |
commit | faceb8d41fd2e54af2d4354a1f9ba8cfe355616a (patch) | |
tree | 3f212ce61bbf2be394878fff6367aa9790b1d27b /engines | |
parent | 7b4771bd9f9e4776302fb2c1b2e7fb5153e7e539 (diff) | |
download | scummvm-rg350-faceb8d41fd2e54af2d4354a1f9ba8cfe355616a.tar.gz scummvm-rg350-faceb8d41fd2e54af2d4354a1f9ba8cfe355616a.tar.bz2 scummvm-rg350-faceb8d41fd2e54af2d4354a1f9ba8cfe355616a.zip |
Remove obsolete check, since HE72+ uses separate function.
svn-id: r46084
Diffstat (limited to 'engines')
-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; |