Browse Source
Merge pull request #8948 from german77/order
yuzu: sort input profiles by name
pull/15/merge
Morph
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
src/yuzu/configuration/input_profiles.cpp
|
|
|
@ -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; |
|
|
|
} |
|
|
|
|
|
|
|
|