IOS/ES: Remove now unnecessary title sorting hack

ES now uses FS to access the filesystem and FS's ReadDirectory now
returns file lists that are correctly ordered.
This commit is contained in:
Léo Lam 2019-12-30 12:13:00 +01:00
parent 031c63eb8a
commit c02e7de55a

View file

@ -109,12 +109,6 @@ static std::vector<u64> GetTitlesInTitleOrImport(FS::FileSystem* fs, const std::
}
}
// On a real Wii, the title list is not in any particular order. However, because of how
// the flash filesystem works, titles such as 1-2 are *never* in the first position.
// We must keep this behaviour, or some versions of the System Menu may break.
std::sort(title_ids.begin(), title_ids.end(), std::greater<>());
return title_ids;
}