From 6cbf131318a5687182373c487ed01ad6b6a549c0 Mon Sep 17 00:00:00 2001 From: rubidium Date: Wed, 4 Mar 2009 10:02:00 +0000 Subject: (svn r15611) -Change: when sorting files on modification date and the modification date is equal sort on the title so reversing the sorting direction actually reverses the order the listed files --- src/fios.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/fios.cpp b/src/fios.cpp index 8c68a9e62..ab85a8511 100644 --- a/src/fios.cpp +++ b/src/fios.cpp @@ -49,14 +49,14 @@ int CDECL compare_FiosItems(const void *a, const void *b) { const FiosItem *da = (const FiosItem *)a; const FiosItem *db = (const FiosItem *)b; - int r; + int r = 0; - if (_savegame_sort_order & SORT_BY_NAME) { - r = strcasecmp(da->title, db->title); - } else { + if ((_savegame_sort_order & SORT_BY_NAME) == 0) { r = da->mtime < db->mtime ? -1 : 1; } + if (r == 0) r = strcasecmp(da->title, db->title); + if (_savegame_sort_order & SORT_DESCENDING) r = -r; return r; } -- cgit v1.2.3-54-g00ecf