diff options
author | athrxx | 2019-04-15 23:56:02 +0200 |
---|---|---|
committer | athrxx | 2019-06-21 13:35:34 +0200 |
commit | e2fa898021883a9a934703a176b78eee8c07d397 (patch) | |
tree | 00fe9dc1dfee9582d00f136de90ba502eecdc9f4 | |
parent | a486438c103c42422ae69a15e288111e643af367 (diff) | |
download | scummvm-rg350-e2fa898021883a9a934703a176b78eee8c07d397.tar.gz scummvm-rg350-e2fa898021883a9a934703a176b78eee8c07d397.tar.bz2 scummvm-rg350-e2fa898021883a9a934703a176b78eee8c07d397.zip |
KYRA: (EOB/Amiga) - t
-rw-r--r-- | engines/kyra/sound/drivers/audiomaster2.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/engines/kyra/sound/drivers/audiomaster2.cpp b/engines/kyra/sound/drivers/audiomaster2.cpp index d50d51966f..c22f8737cc 100644 --- a/engines/kyra/sound/drivers/audiomaster2.cpp +++ b/engines/kyra/sound/drivers/audiomaster2.cpp @@ -892,6 +892,8 @@ void AudioMaster2ResourceManager::initResource(SoundResource *resource) { if (!resource) return; + Common::StackLock lock(_mutex); + SoundResource *res = retrieveFromChain(resource->getName()); // The driver does not replace resources with the same name, but disposes the new resource instead. // So these names seem to be considered "globally unique". @@ -1284,7 +1286,7 @@ void AudioMaster2Internal::fadeOut(int delay) { } bool AudioMaster2Internal::isFading() { - return _io->isFading(); + return _ready ? _io->isFading() : false; } void AudioMaster2Internal::setMusicVolume(int volume) { @@ -1313,18 +1315,18 @@ void AudioMaster2Internal::resetCounter() { } int AudioMaster2Internal::getPlayDuration() { - return _durationCounter; + return _ready ? _durationCounter : 0; } void AudioMaster2Internal::sync(SoundResource *res) { if (!_ready || !res) return; + Common::StackLock lock(_mutex); + if (res->getType() != 1) return; - Common::StackLock lock(_mutex); - SoundResourceSMUS *smus = static_cast<SoundResourceSMUS*>(res); _io->_tempo = smus->getTempo(); smus->setSync(_io->_sync); |