From 05e440cc5a8aedbbcb508cb53527c5f286fc8169 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 25 Sep 2004 09:50:41 +0000 Subject: Limit to HE games svn-id: r15262 --- scumm/string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v1.2.3