SL-20696 FIXED llLoopSoundSlave producing no sound since viewer update

master
Mnikolenko Productengine 2023-12-07 13:59:22 +02:00
parent 5accc1feff
commit a069a21d31
1 changed files with 1 additions and 1 deletions

View File

@ -398,7 +398,7 @@ void LLAudioEngine::idle()
for (source_map::value_type& src_pair : mAllSources)
{
LLAudioSource *sourcep = src_pair.second;
if (sourcep->isMuted() && sourcep->isSyncMaster() && sourcep->getPriority() > max_sm_priority)
if (!sourcep->isMuted() && sourcep->isSyncMaster() && sourcep->getPriority() > max_sm_priority)
{
sync_masterp = sourcep;
master_channelp = sync_masterp->getChannel();