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
parent
commit
5082efef6c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/yuzu/configuration/input_profiles.cpp

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

Loading…
Cancel
Save