mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-02 17:03:13 +00:00
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:
parent
d0167d0a11
commit
b10b9bd929
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user