mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 08:04:40 +00:00
Fix copy paste error in conditional
This commit is contained in:
parent
8862bc2f3a
commit
71a57db507
1 changed files with 1 additions and 1 deletions
|
|
@ -627,7 +627,7 @@ S32 QSORT_CALLBACK SFXSound::qsortCompare( const void* item1, const void* item2
|
||||||
|
|
||||||
if( !source1IsPlaying && !source2IsPlaying )
|
if( !source1IsPlaying && !source2IsPlaying )
|
||||||
return 0;
|
return 0;
|
||||||
else if( !source1IsPlaying && source1IsPlaying )
|
else if( !source1IsPlaying && source2IsPlaying )
|
||||||
return 1;
|
return 1;
|
||||||
else if( source1IsPlaying && !source2IsPlaying )
|
else if( source1IsPlaying && !source2IsPlaying )
|
||||||
return -1;
|
return -1;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue