mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
This commit is contained in:
@@ -13,19 +13,19 @@ RomBrowserViewModel::RomBrowserViewModel(IRomBrowserController* romBrowserContro
|
||||
default:
|
||||
{
|
||||
filterSortParams = SdFolderFilterSortParams(
|
||||
SdFolderSortType::Name, SdFolderSortDirection::Ascending);
|
||||
SdFolderSortType::Name, SdFolderSortDirection::Ascending, false);
|
||||
break;
|
||||
}
|
||||
case RomBrowserSortMode::NameDescending:
|
||||
{
|
||||
filterSortParams = SdFolderFilterSortParams(
|
||||
SdFolderSortType::Name, SdFolderSortDirection::Descending);
|
||||
SdFolderSortType::Name, SdFolderSortDirection::Descending, false);
|
||||
break;
|
||||
}
|
||||
case RomBrowserSortMode::LastModified:
|
||||
{
|
||||
filterSortParams = SdFolderFilterSortParams(
|
||||
SdFolderSortType::LastModified, SdFolderSortDirection::Descending);
|
||||
SdFolderSortType::LastModified, SdFolderSortDirection::Descending, false);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user