Fix copy paste error in conditional

This commit is contained in:
Ben Payne 2015-02-18 20:55:58 -05:00
parent 8862bc2f3a
commit 71a57db507

View file

@ -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;