aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}