aboutsummaryrefslogtreecommitdiff
path: root/scumm/string.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-03-13 04:00:59 +0000
committerTravis Howell2005-03-13 04:00:59 +0000
commitfa2a936565d09e662d9449aa703e538ccf5d29d5 (patch)
tree0085c44a8d050b78b13f0509e56361acc7185219 /scumm/string.cpp
parent10c09943934d2d2cdd3e99c0f2ee3e3afe6ca7dc (diff)
downloadscummvm-rg350-fa2a936565d09e662d9449aa703e538ccf5d29d5.tar.gz
scummvm-rg350-fa2a936565d09e662d9449aa703e538ccf5d29d5.tar.bz2
scummvm-rg350-fa2a936565d09e662d9449aa703e538ccf5d29d5.zip
Don't apply to HE100, it breaks credits in pajama.
svn-id: r17112
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 992179791e..f764f3a7b9 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -573,7 +573,7 @@ int ScummEngine::addMessageToStack(const byte *msg, byte *dst, int dstSize) {
while (1) {
chr = src[num++];
- if (_heversion >= 99 && chr == '[') {
+ if (_heversion == 99 && chr == '[') {
while (src[num++] != ']');
continue;
}