Skip to content

Commit

Permalink
[Bot] Automated dotnet-format update
Browse files Browse the repository at this point in the history
  • Loading branch information
ciro-unity committed Jan 31, 2021
1 parent 0ff77ad commit bf841d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UOP1_Project/Assets/Scripts/Audio/AudioManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public bool FinishAudioCue(AudioCueKey emitterKey)
{
soundEmitters[i].Finish();
soundEmitters[i].OnSoundFinishedPlaying += OnSoundEmitterFinishedPlaying;
}
}
}

return isFound;
Expand Down Expand Up @@ -172,7 +172,7 @@ private void OnSoundEmitterFinishedPlaying(SoundEmitter soundEmitter)

private void StopAndCleanEmitter(SoundEmitter soundEmitter)
{
if(soundEmitter.IsFinishing())
if (soundEmitter.IsFinishing())
soundEmitter.OnSoundFinishedPlaying -= OnSoundEmitterFinishedPlaying;

soundEmitter.Stop();
Expand Down

0 comments on commit bf841d9

Please sign in to comment.