SL-20696 FIXED llLoopSoundSlave producing no sound since viewer update

master
Mnikolenko Productengine 2023-12-07 13:59:22 +02:00 committed by Ansariel
parent 3f74b107b3
commit e799a64153
1 changed files with 1 additions and 1 deletions

View File

@ -411,7 +411,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();