1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-27 16:39:09 +00:00

(svn r313) -Feature/Fix: directories in *nix are now sorted alphabetically in ascending order (Tron).

This commit is contained in:
darkvater
2004-09-23 21:16:23 +00:00
parent f3758d133a
commit 198f841c7e

8
unix.c
View File

@@ -100,6 +100,14 @@ FiosItem *FiosGetSavegameList(int *num, int mode)
closedir(dir);
}
{
/* XXX ugly global variables ... */
byte order = _savegame_sort_order;
_savegame_sort_order = 2; // sort ascending by name
qsort(_fios_items, _fios_count, sizeof(FiosItem), compare_FiosItems);
_savegame_sort_order = order;
}
// this is where to start sorting
sort_start = _fios_count;