mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2024-11-10 07:11:54 +00:00
Fix incorrect comparison
This commit is contained in:
parent
006317da48
commit
966b8c33c7
1 changed files with 1 additions and 1 deletions
|
@ -616,7 +616,7 @@ int EdgeCompare( const void *elem1, const void *elem2 ) {
|
|||
if ( d1 < d2 ) {
|
||||
return -1;
|
||||
}
|
||||
if ( d2 > d1 ) {
|
||||
if ( d2 < d1 ) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
|
Loading…
Reference in a new issue