Merge pull request #8948 from german77/order

yuzu: sort input profiles by name
This commit is contained in:
Morph 2022-09-23 20:28:35 -04:00 committed by GitHub
commit 5082efef6c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}