mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-27 14:58:32 +00:00
Input: Trim profile names to allow spaces between ','s
This commit is contained in:
parent
e10abaed3e
commit
83c94feb3d
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue