aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2003-07-13 09:01:30 +0000
committerTravis Howell2003-07-13 09:01:30 +0000
commit6949d49e690a54512db8afd946a66bffdfff97c5 (patch)
tree3693c05e7814e4d8f8ff64db88422593b22a6897 /scumm
parent39a088229a367b6429031c2eb349ed293745f2df (diff)
downloadscummvm-rg350-6949d49e690a54512db8afd946a66bffdfff97c5.tar.gz
scummvm-rg350-6949d49e690a54512db8afd946a66bffdfff97c5.tar.bz2
scummvm-rg350-6949d49e690a54512db8afd946a66bffdfff97c5.zip
Simpler check
svn-id: r8969
Diffstat (limited to 'scumm')
-rw-r--r--scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index c4b36c577f..66653c301d 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -271,7 +271,7 @@ byte CostumeRenderer::mainRoutine(int xmoveCur, int ymoveCur) {
if (_vm->_version == 1)
procC64();
- else if (_vm->_features & GF_AMIGA && (_vm->_gameId == GID_INDY4 || _vm->_gameId == GID_MONKEY2))
+ else if (_vm->_features & GF_AMIGA && _vm->_version == 5)
proc3_ami();
else
proc3();