mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-01-13 09:39:17 +01:00
Added sorting for menu directory items. Some OSes list the files in order of date in stead of name.
This commit is contained in:
parent
976879f580
commit
c5cfa7b8fb
@ -97,6 +97,7 @@ bool MenuParser::buildTextMenu(CollectionInfo *collection, bool sort)
|
||||
}
|
||||
|
||||
closedir(dp);
|
||||
std::sort(menuItems.begin(), menuItems.end(), [](Item *a, Item *b) {return Utils::toLower(a->fullTitle) <= Utils::toLower(b->fullTitle);});
|
||||
|
||||
}
|
||||
else
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
std::string retrofe_version_major = "0";
|
||||
std::string retrofe_version_minor = "9";
|
||||
std::string retrofe_version_build = "13";
|
||||
std::string retrofe_version_build = "14";
|
||||
|
||||
|
||||
std::string Version::getString( )
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user