From 8e7895e7bcbb1e9d233174751cc0ff8e65c565b6 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Sat, 29 Apr 2006 02:01:32 +0000 Subject: Add more timer code differences in FF svn-id: r22201 --- engines/simon/simon.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp index 73a7ed0049..7514f1cb3c 100644 --- a/engines/simon/simon.cpp +++ b/engines/simon/simon.cpp @@ -2795,9 +2795,17 @@ void SimonEngine::timer_proc1() { if (!(_lockWord & 0x10)) { if (getGameType() == GType_FF) { _syncFlag2 ^= 1; - - if (!_syncFlag2) + if (!_syncFlag2) { processVgaEvents(); + } else { + // Double speed on Oracle + if (getBitFlag(99)) { + processVgaEvents(); + } else if (_scrollCount == 0) { + _lockWord &= ~2; + return; + } + } } else { processVgaEvents(); processVgaEvents(); -- cgit v1.2.3