diff options
-rw-r--r-- | scumm/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index cc32a57476..8f7ffecdcf 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -434,7 +434,7 @@ void ScummEngine::drawString(int a, const byte *msg) { } for (i = 0; (c = buf[i++]) != 0;) { - if (c == code) { + if (_heversion >= 72 && c == code) { c = buf[i++]; switch (c) { case 110: |