diff options
author | Travis Howell | 2004-09-25 09:50:41 +0000 |
---|---|---|
committer | Travis Howell | 2004-09-25 09:50:41 +0000 |
commit | 05e440cc5a8aedbbcb508cb53527c5f286fc8169 (patch) | |
tree | a8b2c074e07cee3ec31981aa618573b6c3015dc8 | |
parent | 7c22767b87aac75f808a0a7df56a086889ef6a76 (diff) | |
download | scummvm-rg350-05e440cc5a8aedbbcb508cb53527c5f286fc8169.tar.gz scummvm-rg350-05e440cc5a8aedbbcb508cb53527c5f286fc8169.tar.bz2 scummvm-rg350-05e440cc5a8aedbbcb508cb53527c5f286fc8169.zip |
Limit to HE games
svn-id: r15262
-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: |