Don't use fastcmp in Levelsort_Name

This commit is contained in:
NepDisk 2025-12-11 13:24:14 -05:00
parent 29ef124423
commit 5351e89677

View file

@ -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;
}