From 6384093878c6197efa440a1e8efb4b29fd53d870 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Thu, 26 Aug 2004 10:51:11 +0000 Subject: HE 7.2 games use @ as charset code Small sound fix svn-id: r14767 --- scumm/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scumm/string.cpp') diff --git a/scumm/string.cpp b/scumm/string.cpp index 16275d3b35..f0a9ce16aa 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -512,7 +512,7 @@ int ScummEngine::addMessageToStack(const byte *msg, byte *dst, int dstSize) { num += (_version == 8) ? 4 : 2; } } else { - if (chr != '@') { + if (!(chr == '@' && _heversion <= 71)) { *dst++ = chr; } } -- cgit v1.2.3