Эх сурвалжийг харах

yuzu: sort input profiles by name

Narr the Reg 3 жил өмнө
parent
commit
f711d1ce52

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