mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-21 19:51:49 +00:00
Fix missing sound effects in puttdemo (DOS)
svn-id: r14097
This commit is contained in:
parent
a25f70661b
commit
0b045875ca
1
TODO
1
TODO
@ -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
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user