aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorFilippos Karapetis2007-07-27 00:59:12 +0000
committerFilippos Karapetis2007-07-27 00:59:12 +0000
commit533ebe13d2f552bd7d06c04d10e9a20c8033a1ff (patch)
tree9c9ba9539f9f875d2d5373f2888805c37d56b0f7 /engines/scumm
parent6dd6ea5fc7d34e207dbcaaec1cb9463635fa8a6a (diff)
downloadscummvm-rg350-533ebe13d2f552bd7d06c04d10e9a20c8033a1ff.tar.gz
scummvm-rg350-533ebe13d2f552bd7d06c04d10e9a20c8033a1ff.tar.bz2
scummvm-rg350-533ebe13d2f552bd7d06c04d10e9a20c8033a1ff.zip
Fix for bug #1761530 - "COMI: iMUSE-related crash on startup"
svn-id: r28226
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/imuse_digi/dimuse_sndmgr.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp
index c66209b42e..acc6593347 100644
--- a/engines/scumm/imuse_digi/dimuse_sndmgr.cpp
+++ b/engines/scumm/imuse_digi/dimuse_sndmgr.cpp
@@ -619,13 +619,12 @@ int32 ImuseDigiSndMgr::getDataFromRegion(SoundDesc *soundDesc, int region, byte
if (len)
error("Vorbis library compiled support needed!");
#endif
- assert(len);
soundMode = 2;
}
if (!len) {
sprintf(fileName, "%s_reg%03d.mp3", soundDesc->name, region);
cmpFile = soundDesc->bundle->getFile(fileName, offs, len);
-#ifndef USE_VORBIS
+#ifndef USE_MAD
if (len)
error("Mad library compiled support needed!");
#endif