aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-08-26 10:51:11 +0000
committerTravis Howell2004-08-26 10:51:11 +0000
commit6384093878c6197efa440a1e8efb4b29fd53d870 (patch)
tree03e724db2fbbb84e88c9dcc420ea1062df8f8754 /scumm/string.cpp
parent79fb54ba29c42ce1fabfb623bbc3a7782f15bd20 (diff)
downloadscummvm-rg350-6384093878c6197efa440a1e8efb4b29fd53d870.tar.gz
scummvm-rg350-6384093878c6197efa440a1e8efb4b29fd53d870.tar.bz2
scummvm-rg350-6384093878c6197efa440a1e8efb4b29fd53d870.zip
HE 7.2 games use @ as charset code
Small sound fix svn-id: r14767
Diffstat (limited to 'scumm/string.cpp')
-rw-r--r--scumm/string.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}
}