diff --git a/OpenRA.Game/Sound/OpenAlSound.cs b/OpenRA.Game/Sound/OpenAlSound.cs index 52f99b75c4..9723140043 100644 --- a/OpenRA.Game/Sound/OpenAlSound.cs +++ b/OpenRA.Game/Sound/OpenAlSound.cs @@ -210,7 +210,7 @@ namespace OpenRA AL.GetSource(key, ALGetSourcei.SourceState, out state); if (state == (int)ALSourceState.Playing && paused) AL.SourcePause(key); - else if (state == (int)ALSourceState.Paused && !paused) + else if (state == (int)ALSourceState.Paused && !paused) AL.SourcePlay(key); } @@ -222,7 +222,7 @@ namespace OpenRA AL.GetSource(key, ALGetSourcei.SourceState, out state); if (state == (int)ALSourceState.Playing && paused) AL.SourcePause(key); - else if (state == (int)ALSourceState.Paused && !paused) + else if (state == (int)ALSourceState.Paused && !paused) AL.SourcePlay(key); } }