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