aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/sci/sound/music.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/engines/sci/sound/music.h b/engines/sci/sound/music.h
index ec9cbd8506..a29b6edee2 100644
--- a/engines/sci/sound/music.h
+++ b/engines/sci/sound/music.h
@@ -164,13 +164,11 @@ public:
uint32 soundGetTempo() const { return _dwTempo; }
bool soundIsActive(MusicEntry *pSnd) {
- Common::StackLock lock(_mutex);
assert(pSnd->pStreamAud != 0);
return _pMixer->isSoundHandleActive(pSnd->hCurrentAud);
}
void updateAudioStreamTicker(MusicEntry *pSnd) {
- Common::StackLock lock(_mutex);
assert(pSnd->pStreamAud != 0);
pSnd->ticker = (uint16)(_pMixer->getSoundElapsedTime(pSnd->hCurrentAud) * 0.06);
}