yuzu: sort input profiles by name

This commit is contained in:
Narr the Reg 2022-09-23 12:31:35 -05:00
parent 70abb13a43
commit f711d1ce52

View file

@ -67,6 +67,8 @@ std::vector<std::string> InputProfiles::GetInputProfileNames() {
profile_names.push_back(profile_name);
}
std::stable_sort(profile_names.begin(), profile_names.end());
return profile_names;
}