mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-03-12 06:39:14 +01:00
Input: Trim profile names to allow spaces between ','s
This commit is contained in:
parent
e10abaed3e
commit
83c94feb3d
@ -69,7 +69,7 @@ namespace InputProfile
|
||||
std::vector<std::string> result(profiles.size());
|
||||
std::transform(profiles.begin(), profiles.end(), result.begin(), [&device_profile_root_location](const std::string& profile)
|
||||
{
|
||||
return device_profile_root_location + "/" + profile + ".ini";
|
||||
return device_profile_root_location + "/" + StripSpaces(profile) + ".ini";
|
||||
});
|
||||
|
||||
return result;
|
||||
|
Loading…
x
Reference in New Issue
Block a user