Don't use fastcmp in Levelsort_Name
This commit is contained in:
parent
29ef124423
commit
5351e89677
1 changed files with 1 additions and 1 deletions
|
|
@ -3148,7 +3148,7 @@ typedef int (qsort_f)(const void *, const void *);
|
|||
static int Levelsort_Name(const void *a, const void *b)
|
||||
{
|
||||
const INT16 m1 = *(const INT16 *)a, m2 = *(const INT16 *)b;
|
||||
int c = !fastcmp(mapheaderinfo[m1]->lvlttl, mapheaderinfo[m2]->lvlttl);
|
||||
int c = strcmp(mapheaderinfo[m1]->lvlttl, mapheaderinfo[m2]->lvlttl);
|
||||
return c != 0 ? c : m1 - m2;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue