ILLUSIONS: Fix subtitle speed in Duckman. Fxies #11636

The original was operating byte pointers and we work with uint16 *.
Thus, division by 2 is not needed for counting string length
This commit is contained in:
Eugene Sandulenko 2020-09-05 00:41:54 +02:00
parent d0167d0a11
commit b10b9bd929

View File

@ -307,7 +307,7 @@ int TalkThread_Duckman::insertText() {
Common::Point pt;
_vm->getDefaultTextPosition(pt);
_vm->_screenText->updateTextInfoPosition(pt);
int charCount = (_entryText - _currEntryText) / 2;
int charCount = _entryText - _currEntryText;
return charCount;
}