summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fios.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fios.cpp b/src/fios.cpp
index 9d5db867a..7a0573acb 100644
--- a/src/fios.cpp
+++ b/src/fios.cpp
@@ -51,12 +51,12 @@ int CDECL compare_FiosItems(const void *a, const void *b)
const FiosItem *db = (const FiosItem *)b;
int r = 0;
- if ((_savegame_sort_order & SORT_BY_NAME) == 0) {
+ if ((_savegame_sort_order & SORT_BY_NAME) == 0 && da->mtime != db->mtime) {
r = da->mtime < db->mtime ? -1 : 1;
+ } else {
+ r = strcasecmp(da->title, db->title);
}
- if (r == 0) r = strcasecmp(da->title, db->title);
-
if (_savegame_sort_order & SORT_DESCENDING) r = -r;
return r;
}