From b1ac961adc61986d5b5f69b6028bcb411e7e4deb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Tue, 1 Jul 2014 15:39:38 +0200 Subject: [PATCH] StyleCop --- OpenRA.Game/Sound/OpenAlSound.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } }