mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-27 05:32:45 +00:00
SCI32: Fix backwards kFrameOut throttle timings
This commit is contained in:
parent
bb0d5e00d0
commit
20106fff7b
@ -1609,10 +1609,10 @@ void GfxFrameout::throttle() {
|
||||
if (_throttleFrameOut) {
|
||||
uint8 throttleTime;
|
||||
if (_throttleState == 2) {
|
||||
throttleTime = 17;
|
||||
throttleTime = 16;
|
||||
_throttleState = 0;
|
||||
} else {
|
||||
throttleTime = 16;
|
||||
throttleTime = 17;
|
||||
++_throttleState;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user