diff options
author | Travis Howell | 2004-10-05 14:40:22 +0000 |
---|---|---|
committer | Travis Howell | 2004-10-05 14:40:22 +0000 |
commit | 3ea5ebce0eba744e50fda6d1ae8c788b63344295 (patch) | |
tree | 3e184cce654b9ae27461ad6ce4538b6216fc482b /scumm | |
parent | 96c493d94bb2bb63fb0e2d5b8a21f19e960a77e2 (diff) | |
download | scummvm-rg350-3ea5ebce0eba744e50fda6d1ae8c788b63344295.tar.gz scummvm-rg350-3ea5ebce0eba744e50fda6d1ae8c788b63344295.tar.bz2 scummvm-rg350-3ea5ebce0eba744e50fda6d1ae8c788b63344295.zip |
thinkerk works now.
svn-id: r15421
Diffstat (limited to 'scumm')
-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; |