mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Merge pull request #1268 from lioncash/append
ControllerEmu: Get rid of redundant string appending
This commit is contained in:
commit
fd33ecaecd
1 changed files with 2 additions and 2 deletions
|
@ -38,7 +38,7 @@ void ControllerEmu::UpdateDefaultDevice()
|
|||
|
||||
void ControllerEmu::ControlGroup::LoadConfig(IniFile::Section *sec, const std::string& defdev, const std::string& base)
|
||||
{
|
||||
std::string group(base + name); group += "/";
|
||||
std::string group(base + name + "/");
|
||||
|
||||
// settings
|
||||
for (auto& s : settings)
|
||||
|
@ -100,7 +100,7 @@ void ControllerEmu::LoadConfig(IniFile::Section *sec, const std::string& base)
|
|||
|
||||
void ControllerEmu::ControlGroup::SaveConfig(IniFile::Section *sec, const std::string& defdev, const std::string& base)
|
||||
{
|
||||
std::string group(base + name); group += "/";
|
||||
std::string group(base + name + "/");
|
||||
|
||||
for (auto& s : settings)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue