mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
TOLTECS: Fixed text command parsing in updateVerbLine
This commit is contained in:
committed by
Willem Jan Palenstijn
parent
b287588149
commit
bbf882016a
@@ -707,8 +707,8 @@ void Screen::updateTalkText(int16 slotIndex, int16 slotOffset) {
|
||||
durationModifier = textData[1];
|
||||
textData += 2;
|
||||
} else if (*textData < 0x0A) {
|
||||
item->fontNum = textData[1];
|
||||
textData += 2;
|
||||
item->fontNum = textData[0];
|
||||
textData += 1;
|
||||
} else
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user