forked from mirror/openmw-tes3mp
Merge pull request #860 from kcat/master
Start underwater sound after updating sounds
This commit is contained in:
commit
681cbaf04e
1 changed files with 7 additions and 7 deletions
|
@ -844,13 +844,6 @@ namespace MWSound
|
||||||
env
|
env
|
||||||
);
|
);
|
||||||
|
|
||||||
if(mListenerUnderwater)
|
|
||||||
{
|
|
||||||
// Play underwater sound (after updating listener)
|
|
||||||
if(!(mUnderwaterSound && mOutput->isSoundPlaying(mUnderwaterSound)))
|
|
||||||
mUnderwaterSound = playSound("Underwater", 1.0f, 1.0f, Play_TypeSfx, Play_LoopNoEnv);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check if any sounds are finished playing, and trash them
|
// Check if any sounds are finished playing, and trash them
|
||||||
SoundMap::iterator snditer = mActiveSounds.begin();
|
SoundMap::iterator snditer = mActiveSounds.begin();
|
||||||
while(snditer != mActiveSounds.end())
|
while(snditer != mActiveSounds.end())
|
||||||
|
@ -979,6 +972,13 @@ namespace MWSound
|
||||||
++trkiter;
|
++trkiter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(mListenerUnderwater)
|
||||||
|
{
|
||||||
|
// Play underwater sound (after updating sounds)
|
||||||
|
if(!(mUnderwaterSound && mOutput->isSoundPlaying(mUnderwaterSound)))
|
||||||
|
mUnderwaterSound = playSound("Underwater", 1.0f, 1.0f, Play_TypeSfx, Play_LoopNoEnv);
|
||||||
|
}
|
||||||
mOutput->finishUpdate();
|
mOutput->finishUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue