mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 12:39:56 +00:00
Cine: Fix regression in executePlayerInput (Caused slowness when clicking when moving).
The regression was caused by r47505. svn-id: r48373
This commit is contained in:
parent
164dfdd0ab
commit
5d62e682cc
@ -863,7 +863,9 @@ uint16 executePlayerInput() {
|
||||
|
||||
while (mouseButton && (!limitMouseCheckCount || currentEntry < 200) && !g_cine->shouldQuit()) {
|
||||
di |= (mouseButton & (kLeftMouseButton | kRightMouseButton));
|
||||
manageEvents();
|
||||
if (!limitMouseCheckCount) {
|
||||
manageEvents();
|
||||
}
|
||||
getMouseData(mouseUpdateStatus, &mouseButton, &mouseX, &mouseY);
|
||||
currentEntry++;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user