KYRA: Fix for bug #3459000 "KYRA1CD: Accented characters overdrawn in introduction".
This commit is contained in:
parent
1b11139dc5
commit
efa52cb79c
1 changed files with 1 additions and 1 deletions
|
@ -624,7 +624,7 @@ bool SeqPlayer::playSequence(const uint8 *seqData, bool skipSeq) {
|
|||
if (_vm->gameFlags().lang == Common::JA_JPN)
|
||||
charStr[1] = _vm->seqTextsTable()[_seqDisplayedText][++_seqDisplayedChar];
|
||||
_screen->printText(charStr, _seqDisplayedTextX, 180, 0xF, 0xC);
|
||||
_seqDisplayedTextX += _screen->getCharWidth(charStr[0]);
|
||||
_seqDisplayedTextX += _screen->getCharWidth((uint8)charStr[0]);
|
||||
++_seqDisplayedChar;
|
||||
|
||||
if (_vm->seqTextsTable()[_seqDisplayedText][_seqDisplayedChar] == '\0')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue