From 20ec8d2d343bbeea79b939c185fc2ed0772500bb Mon Sep 17 00:00:00 2001 From: Gregory Montoir Date: Mon, 2 Apr 2007 18:59:00 +0000 Subject: This should make the game match the original DOS version speed. svn-id: r26371 --- engines/queen/input.cpp | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'engines/queen/input.cpp') diff --git a/engines/queen/input.cpp b/engines/queen/input.cpp index 02573d4d3e..0b58c46036 100644 --- a/engines/queen/input.cpp +++ b/engines/queen/input.cpp @@ -81,11 +81,10 @@ Input::Input(Common::Language language, OSystem *system) : } } -void Input::delay() { - delay(_fastMode ? DELAY_SHORT : DELAY_NORMAL); -} - void Input::delay(uint amount) { + if (_fastMode && amount > DELAY_SHORT) { + amount = DELAY_SHORT; + } if (_idleTime < DELAY_SCREEN_BLANKER) { _idleTime += amount; } -- cgit v1.2.3