aboutsummaryrefslogtreecommitdiff
path: root/scumm/costume.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-04-20 01:33:44 +0000
committerTravis Howell2005-04-20 01:33:44 +0000
commit2009b72679837ac26aab05cad265c483a34091bd (patch)
treef690dd566c2ff8068ffd14b327d43979f8234ab3 /scumm/costume.cpp
parent214a5da948423aba60c289a2a158d2f91424d2ee (diff)
downloadscummvm-rg350-2009b72679837ac26aab05cad265c483a34091bd.tar.gz
scummvm-rg350-2009b72679837ac26aab05cad265c483a34091bd.tar.bz2
scummvm-rg350-2009b72679837ac26aab05cad265c483a34091bd.zip
Replace all GF_HUMONGOUS use with _heversion.
Make HE60 specific to puttdemo, since it is unqie. Other HE60 games changed to HE 61. svn-id: r17698
Diffstat (limited to 'scumm/costume.cpp')
-rw-r--r--scumm/costume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/costume.cpp b/scumm/costume.cpp
index 76399339e7..1004799274 100644
--- a/scumm/costume.cpp
+++ b/scumm/costume.cpp
@@ -945,7 +945,7 @@ byte ClassicCostumeLoader::increaseAnim(Actor *a, int slot) {
} else {
if (_vm->_version >= 6) {
if (nc >= 0x71 && nc <= 0x78) {
- uint sound = (_vm->_features & GF_HUMONGOUS) ? 0x78 - nc : nc - 0x71;
+ uint sound = (_vm->_heversion == 60) ? 0x78 - nc : nc - 0x71;
_vm->_sound->addSoundToQueue2(a->_sound[sound]);
if (a->_cost.start[slot] != end)
continue;