Fix missing sound effects in puttdemo (DOS)

svn-id: r14097
This commit is contained in:
Travis Howell 2004-06-28 01:09:41 +00:00
parent a25f70661b
commit 0b045875ca
2 changed files with 2 additions and 2 deletions

1
TODO
View File

@ -285,7 +285,6 @@ SCUMM
- Fix creature behind garage door disappearing in moondemo
- Fix remaining masking issues, when cars come out of garages in puttputt and
when Putt-Putt gets off the chair in Cosmic Dust Diner of puttmoon
- Fix missing sound effects in puttdemo
- Fix 'costume x undefined x x' errors in veggie head mini game of fbear
- Document and fix AKOS differences in Humongous Entertainment games
- Support various newer Humongous Entertainment games

View File

@ -843,7 +843,8 @@ byte LoadedCostume::increaseAnim(Actor *a, int slot) {
} else {
if (_vm->_version >= 6) {
if (nc >= 0x71 && nc <= 0x78) {
_vm->_sound->addSoundToQueue2(a->sound[nc - 0x71]);
uint sound = (_vm->_features & GF_HUMONGOUS) ? 0x78 - nc : nc - 0x71;
_vm->_sound->addSoundToQueue2(a->sound[sound]);
if (a->cost.start[slot] != end)
continue;
}