From 71a57db50757ea20017f6ec6f09cc2f21d4b7f46 Mon Sep 17 00:00:00 2001 From: Ben Payne Date: Wed, 18 Feb 2015 20:55:58 -0500 Subject: [PATCH] Fix copy paste error in conditional --- Engine/source/sfx/sfxSound.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Engine/source/sfx/sfxSound.cpp b/Engine/source/sfx/sfxSound.cpp index b2fd1059a..683f70cda 100644 --- a/Engine/source/sfx/sfxSound.cpp +++ b/Engine/source/sfx/sfxSound.cpp @@ -627,7 +627,7 @@ S32 QSORT_CALLBACK SFXSound::qsortCompare( const void* item1, const void* item2 if( !source1IsPlaying && !source2IsPlaying ) return 0; - else if( !source1IsPlaying && source1IsPlaying ) + else if( !source1IsPlaying && source2IsPlaying ) return 1; else if( source1IsPlaying && !source2IsPlaying ) return -1;