Make it possible to disable digitalimuse by just commenting out it's
creation in scummvm.cpp svn-id: r5162
This commit is contained in:
parent
41b61adac0
commit
96c900f095
1 changed files with 2 additions and 1 deletions
|
@ -182,7 +182,8 @@ void Sound::playSound(int sound) {
|
|||
ptr = _scumm->getResourceAddress(rtSound, sound);
|
||||
if (ptr) {
|
||||
if (READ_UINT32_UNALIGNED(ptr) == MKID('iMUS')){
|
||||
_scumm->_imuseDigital->startSound(sound);
|
||||
if (_scumm->_imuseDigital)
|
||||
_scumm->_imuseDigital->startSound(sound);
|
||||
return;
|
||||
}
|
||||
else if (READ_UINT32_UNALIGNED(ptr) == MKID('SOUN')) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue