diff options
author | Travis Howell | 2003-07-13 09:01:30 +0000 |
---|---|---|
committer | Travis Howell | 2003-07-13 09:01:30 +0000 |
commit | 6949d49e690a54512db8afd946a66bffdfff97c5 (patch) | |
tree | 3693c05e7814e4d8f8ff64db88422593b22a6897 /scumm | |
parent | 39a088229a367b6429031c2eb349ed293745f2df (diff) | |
download | scummvm-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.cpp | 2 |
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(); |