diff --git a/RetroFE/Source/RetroFE.cpp b/RetroFE/Source/RetroFE.cpp index 7e06974..65ecc03 100644 --- a/RetroFE/Source/RetroFE.cpp +++ b/RetroFE/Source/RetroFE.cpp @@ -1609,11 +1609,12 @@ CollectionInfo *RetroFE::getCollection(std::string collectionName) } closedir( dp ); - collection->sortItems( ); - bool menuSort = true; config_.getProperty( "collections." + collectionName + ".list.menuSort", menuSort ); + if (menuSort) + collection->sortItems( ); + MenuParser mp; mp.buildMenuItems( collection, menuSort); diff --git a/RetroFE/Source/Version.cpp b/RetroFE/Source/Version.cpp index e78be9d..6ce8142 100644 --- a/RetroFE/Source/Version.cpp +++ b/RetroFE/Source/Version.cpp @@ -21,7 +21,7 @@ std::string retrofe_version_major = "0"; std::string retrofe_version_minor = "9"; -std::string retrofe_version_build = "22"; +std::string retrofe_version_build = "23"; std::string Version::getString( )