From 20106fff7b41d8f93270c8b5377a886fcfb854ec Mon Sep 17 00:00:00 2001 From: Colin Snover Date: Mon, 25 Jul 2016 11:07:15 -0500 Subject: SCI32: Fix backwards kFrameOut throttle timings --- engines/sci/graphics/frameout.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/sci/graphics/frameout.cpp') diff --git a/engines/sci/graphics/frameout.cpp b/engines/sci/graphics/frameout.cpp index a7899b8d89..b5b320637f 100644 --- a/engines/sci/graphics/frameout.cpp +++ b/engines/sci/graphics/frameout.cpp @@ -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; } -- cgit v1.2.3