mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-14 23:55:45 -04:00
Qt: Fix a couple of instances of inconsistent sorting
This commit is contained in:
@ -162,7 +162,8 @@ void MemoryCardEditorWindow::populateComboBox(QComboBox* cb)
|
||||
|
||||
FileSystem::FindResultsArray results;
|
||||
FileSystem::FindFiles(EmuFolders::MemoryCards.c_str(), "*.mcd",
|
||||
FILESYSTEM_FIND_FILES | FILESYSTEM_FIND_RELATIVE_PATHS, &results);
|
||||
FILESYSTEM_FIND_FILES | FILESYSTEM_FIND_RELATIVE_PATHS | FILESYSTEM_FIND_SORT_BY_NAME,
|
||||
&results);
|
||||
for (FILESYSTEM_FIND_DATA& fd : results)
|
||||
{
|
||||
std::string real_filename(Path::Combine(EmuFolders::MemoryCards, fd.FileName));
|
||||
|
Reference in New Issue
Block a user