aboutsummaryrefslogtreecommitdiff
path: root/scumm/scumm.cpp
diff options
context:
space:
mode:
authorTravis Howell2004-07-21 11:37:41 +0000
committerTravis Howell2004-07-21 11:37:41 +0000
commitd478bc31ac6a17516d3c5b8afa75612307731a86 (patch)
tree7c949d1742fbd959c4a43b41b19dd25da32d3a1d /scumm/scumm.cpp
parent33ef51b7a7026cc51bdb42ec4ac4e06abf412120 (diff)
downloadscummvm-rg350-d478bc31ac6a17516d3c5b8afa75612307731a86.tar.gz
scummvm-rg350-d478bc31ac6a17516d3c5b8afa75612307731a86.tar.bz2
scummvm-rg350-d478bc31ac6a17516d3c5b8afa75612307731a86.zip
Extra timer used in Amiga version of indy3 too.
svn-id: r14291
Diffstat (limited to 'scumm/scumm.cpp')
-rw-r--r--scumm/scumm.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index 5bb1ea9a82..5be15abe72 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -1436,8 +1436,9 @@ int ScummEngine::scummLoop(int delta) {
VAR(VAR_TMR_1) += delta;
VAR(VAR_TMR_2) += delta;
VAR(VAR_TMR_3) += delta;
- if ((_gameId == GID_ZAK256 || _gameId == GID_INDY3) && (_features & GF_FMTOWNS)) {
- // FM Towns version of Indy3 and Zak set three extra timers
+ if ((_gameId == GID_ZAK256) || (_gameId == GID_INDY3 && (_features & GF_FMTOWNS || _features & GF_AMIGA))) {
+ // Amiga and FM Towns version of Indy3 set three extra timers
+ // FM Towns version of Zak set three extra timers
VAR(39) += delta;
VAR(40) += delta;
VAR(41) += delta;