diff options
author | Paweł Kołodziejski | 2005-01-26 14:11:27 +0000 |
---|---|---|
committer | Paweł Kołodziejski | 2005-01-26 14:11:27 +0000 |
commit | 55aa56dbdcdfe773ff4eb54f0dbb76b09897cda7 (patch) | |
tree | 1926b138df628b421dc059f3f803597f4be831a8 | |
parent | 284c209badda4793be651f0d3483044694419d91 (diff) | |
download | scummvm-rg350-55aa56dbdcdfe773ff4eb54f0dbb76b09897cda7.tar.gz scummvm-rg350-55aa56dbdcdfe773ff4eb54f0dbb76b09897cda7.tar.bz2 scummvm-rg350-55aa56dbdcdfe773ff4eb54f0dbb76b09897cda7.zip |
fix for compressed bun sounds
svn-id: r16641
-rw-r--r-- | scumm/imuse_digi/dimuse_sndmgr.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scumm/imuse_digi/dimuse_sndmgr.cpp b/scumm/imuse_digi/dimuse_sndmgr.cpp index cc9ca79de2..65fe442a9d 100644 --- a/scumm/imuse_digi/dimuse_sndmgr.cpp +++ b/scumm/imuse_digi/dimuse_sndmgr.cpp @@ -579,6 +579,7 @@ int32 ImuseDigiSndMgr::getDataFromRegion(soundStruct *soundHandle, int region, b if (soundHandle->compressedStream->endOfData()) { delete soundHandle->compressedStream; soundHandle->compressedStream = NULL; + soundHandle->lastFileName[0] = 0; } } |