diff options
author | Colin Snover | 2016-07-25 11:07:15 -0500 |
---|---|---|
committer | Colin Snover | 2016-07-27 08:49:38 -0500 |
commit | 20106fff7b41d8f93270c8b5377a886fcfb854ec (patch) | |
tree | b051200dd1252b344b13381e18a54ed70afc06b3 | |
parent | bb0d5e00d03680becb349e9fa98e9eb6c83e4c04 (diff) | |
download | scummvm-rg350-20106fff7b41d8f93270c8b5377a886fcfb854ec.tar.gz scummvm-rg350-20106fff7b41d8f93270c8b5377a886fcfb854ec.tar.bz2 scummvm-rg350-20106fff7b41d8f93270c8b5377a886fcfb854ec.zip |
SCI32: Fix backwards kFrameOut throttle timings
-rw-r--r-- | engines/sci/graphics/frameout.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |