1
0
Fork 0

(svn r5673) - Backport from trunk (r5655):

Reversed arrow-sign in the multiplayer list column headers on sort by name
release/0.4
Darkvater 2006-07-31 12:11:14 +00:00
parent 9214c5e0a5
commit 6c3eedee86
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ static int CDECL NGameClientSorter(const void *a, const void *b)
const NetworkGameList *cmp1 = *(const NetworkGameList**)a;
const NetworkGameList *cmp2 = *(const NetworkGameList**)b;
/* Reverse as per default we are interested in most-clients first */
int r = cmp2->info.clients_on - cmp1->info.clients_on;
int r = cmp1->info.clients_on - cmp2->info.clients_on;
if (r == 0) r = cmp1->info.clients_max - cmp2->info.clients_max;
if (r == 0) r = strcasecmp(cmp1->info.server_name, cmp2->info.server_name);