From e2fa898021883a9a934703a176b78eee8c07d397 Mon Sep 17 00:00:00 2001 From: athrxx Date: Mon, 15 Apr 2019 23:56:02 +0200 Subject: KYRA: (EOB/Amiga) - t --- engines/kyra/sound/drivers/audiomaster2.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'engines/kyra') 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(res); _io->_tempo = smus->getTempo(); smus->setSync(_io->_sync); -- cgit v1.2.3