diff options
author | Travis Howell | 2006-09-01 12:20:08 +0000 |
---|---|---|
committer | Travis Howell | 2006-09-01 12:20:08 +0000 |
commit | 8cf8d040d8be9fe28d2c6da2ffdd2f79f2708ec1 (patch) | |
tree | d6724aeee26f20dd6ce06ee8e52bb3077be4ea69 | |
parent | db3baf0c66ddf3a60544aa733e34267e4b7fdf4d (diff) | |
download | scummvm-rg350-8cf8d040d8be9fe28d2c6da2ffdd2f79f2708ec1.tar.gz scummvm-rg350-8cf8d040d8be9fe28d2c6da2ffdd2f79f2708ec1.tar.bz2 scummvm-rg350-8cf8d040d8be9fe28d2c6da2ffdd2f79f2708ec1.zip |
Only check old special codes through drawString() in HE71 and earlier games
svn-id: r23817
-rw-r--r-- | engines/scumm/string.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp index 23b730cc44..862b88e059 100644 --- a/engines/scumm/string.cpp +++ b/engines/scumm/string.cpp @@ -715,7 +715,7 @@ void ScummEngine::drawString(int a, const byte *msg) { _charset->_top += fontHeight; break; } - } else if ((c == 0xFF || (_game.version <= 6 && c == 0xFE)) && (_game.heversion <= 72)) { + } else if ((c == 0xFF || (_game.version <= 6 && c == 0xFE)) && (_game.heversion <= 71)) { c = buf[i++]; switch (c) { case 9: |