mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-26 03:37:53 +00:00
More fixes for string usage Russian HE games.
svn-id: r23816
This commit is contained in:
parent
903d9a2d6c
commit
db3baf0c66
@ -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)) {
|
||||
} else if ((c == 0xFF || (_game.version <= 6 && c == 0xFE)) && (_game.heversion <= 72)) {
|
||||
c = buf[i++];
|
||||
switch (c) {
|
||||
case 9:
|
||||
|
Loading…
Reference in New Issue
Block a user