Fixed sorting for .sub files based on code by procyon.

This commit is contained in:
Pieter Hulshoff 2020-03-11 15:43:59 +01:00
parent c168496b45
commit 834038bf51
2 changed files with 4 additions and 3 deletions

View File

@ -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);

View File

@ -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( )