aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/frameout.cpp
diff options
context:
space:
mode:
authorColin Snover2016-07-25 11:07:15 -0500
committerColin Snover2016-07-27 08:49:38 -0500
commit20106fff7b41d8f93270c8b5377a886fcfb854ec (patch)
treeb051200dd1252b344b13381e18a54ed70afc06b3 /engines/sci/graphics/frameout.cpp
parentbb0d5e00d03680becb349e9fa98e9eb6c83e4c04 (diff)
downloadscummvm-rg350-20106fff7b41d8f93270c8b5377a886fcfb854ec.tar.gz
scummvm-rg350-20106fff7b41d8f93270c8b5377a886fcfb854ec.tar.bz2
scummvm-rg350-20106fff7b41d8f93270c8b5377a886fcfb854ec.zip
SCI32: Fix backwards kFrameOut throttle timings
Diffstat (limited to 'engines/sci/graphics/frameout.cpp')
-rw-r--r--engines/sci/graphics/frameout.cpp4
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;
}