From 2d31fc3af87526eefb63746c77ea3e7e7d32e90a Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sun, 22 Nov 2009 08:20:20 +0000 Subject: Add patch for Tobias, for Kanji support in Japanese PCE version of Loom, with minor changes. svn-id: r46061 --- engines/scumm/string.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'engines/scumm/string.cpp') 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; } } -- cgit v1.2.3