aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/string.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-11-22 08:20:20 +0000
committerTravis Howell2009-11-22 08:20:20 +0000
commit2d31fc3af87526eefb63746c77ea3e7e7d32e90a (patch)
treeb137ce8cc82ff8f06c0fab34a503d0f544893808 /engines/scumm/string.cpp
parent9886c8fb91f12e0e0fad9a9ae92a09d4a98a4a67 (diff)
downloadscummvm-rg350-2d31fc3af87526eefb63746c77ea3e7e7d32e90a.tar.gz
scummvm-rg350-2d31fc3af87526eefb63746c77ea3e7e7d32e90a.tar.bz2
scummvm-rg350-2d31fc3af87526eefb63746c77ea3e7e7d32e90a.zip
Add patch for Tobias, for Kanji support in Japanese PCE version of Loom, with minor changes.
svn-id: r46061
Diffstat (limited to 'engines/scumm/string.cpp')
-rw-r--r--engines/scumm/string.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp
index e99bea87de..8d380511bd 100644
--- a/engines/scumm/string.cpp
+++ b/engines/scumm/string.cpp
@@ -1093,7 +1093,9 @@ int ScummEngine::convertMessageToString(const byte *msg, byte *dst, int dstSize)
}
} else {
if (!(chr == '@' && _game.heversion <= 71) ||
- (_game.id == GID_CMI && _language == Common::ZH_TWN)) {
+ (_game.id == GID_CMI && _language == Common::ZH_TWN) ||
+ (_game.id == GID_LOOM && _game.platform == Common::kPlatformPCEngine && _language == Common::JA_JPN))
+ {
*dst++ = chr;
}
}