mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
Workaround for bug #864030 (COMI: ASCII 0xb (11) not handled)
svn-id: r13621
This commit is contained in:
@@ -191,6 +191,14 @@ void ScummEngine::CHARSET_1() {
|
||||
_keepText = false;
|
||||
break;
|
||||
}
|
||||
|
||||
// FIXME: This is a workaround for bug #864030: In COMI, some text
|
||||
// contains ASCII character 11 = 0xB. It's not quite clear what it is
|
||||
// good for; so for now we just ignore it, which seems to match the
|
||||
// original engine (BTW, traditionally, this is a 'vertical tab').
|
||||
if (c == 0x0B)
|
||||
continue;
|
||||
|
||||
if (c == 13) {
|
||||
newLine:;
|
||||
_charset->_nextLeft = _string[0].xpos;
|
||||
|
||||
Reference in New Issue
Block a user