SCI32: Fix backwards kFrameOut throttle timings

This commit is contained in:
Colin Snover 2016-07-25 11:07:15 -05:00
parent bb0d5e00d0
commit 20106fff7b

View File

@ -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;
}