From 07c0536a2947ffa931b8da4fa329d720d2233136 Mon Sep 17 00:00:00 2001 From: Steveice10 Date: Mon, 19 Dec 2016 19:58:44 -0800 Subject: [PATCH] Make sorting by name the default again. --- source/ui/section/extsavedata.c | 2 +- source/ui/section/titles.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/ui/section/extsavedata.c b/source/ui/section/extsavedata.c index 4141501..104e00a 100644 --- a/source/ui/section/extsavedata.c +++ b/source/ui/section/extsavedata.c @@ -252,7 +252,7 @@ void extsavedata_open() { data->showSD = true; data->showNAND = true; - data->sortByName = false; + data->sortByName = true; list_display("Ext Save Data", "A: Select, B: Return, X: Refresh, Select: Options", data, extsavedata_update, extsavedata_draw_top); } \ No newline at end of file diff --git a/source/ui/section/titles.c b/source/ui/section/titles.c index 372b8cc..43e53ef 100644 --- a/source/ui/section/titles.c +++ b/source/ui/section/titles.c @@ -297,7 +297,7 @@ void titles_open() { data->showGameCard = true; data->showSD = true; data->showNAND = true; - data->sortByName = false; + data->sortByName = true; list_display("Titles", "A: Select, B: Return, X: Refresh, Select: Options", data, titles_update, titles_draw_top); } \ No newline at end of file