diff options
-rw-r--r-- | scumm/charset.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp index 4916972ad1..10d2781496 100644 --- a/scumm/charset.cpp +++ b/scumm/charset.cpp @@ -1312,7 +1312,7 @@ void CharsetRendererClassic::printChar(int chr) { drawTop = _top - _vm->_screenTop; } - if (_vm->_heversion >= 71 && charUnk >= 8) { + if ((_vm->_heversion >= 71 && charUnk >= 8) || (_vm->_heversion >= 90 && charUnk == 0)) { Common::Rect clip, src, dst; clip.top = clip.left = 0; |