diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-04-14 20:52:30 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-14 20:52:30 +0200 |
| commit | e9dbb93cb56bb48666295c211364f47857cfdaa3 (patch) | |
| tree | 144f659a26c95a2d3db33389b9efc6558c321c7f /Source/Core/InputCommon/ControllerEmu/StickGate.cpp | |
| parent | ae18aa0639bdf2d51c8bf738bd7f794d89aa22e4 (diff) | |
| parent | e4caace6bb6213851b979cdd76f9f44ef6d9cd09 (diff) | |
Merge pull request #11756 from lioncash/ini
Common/IniFile: Move interface into Common namespace
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/StickGate.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerEmu/StickGate.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/StickGate.cpp b/Source/Core/InputCommon/ControllerEmu/StickGate.cpp index ce9259f06f..a476cce9ed 100644 --- a/Source/Core/InputCommon/ControllerEmu/StickGate.cpp +++ b/Source/Core/InputCommon/ControllerEmu/StickGate.cpp @@ -226,8 +226,8 @@ void ReshapableInput::SetCenter(ReshapableInput::ReshapeData center) m_center = center; } -void ReshapableInput::LoadConfig(IniFile::Section* section, const std::string& default_device, - const std::string& base_name) +void ReshapableInput::LoadConfig(Common::IniFile::Section* section, + const std::string& default_device, const std::string& base_name) { ControlGroup::LoadConfig(section, default_device, base_name); @@ -269,8 +269,8 @@ void ReshapableInput::LoadConfig(IniFile::Section* section, const std::string& d } } -void ReshapableInput::SaveConfig(IniFile::Section* section, const std::string& default_device, - const std::string& base_name) +void ReshapableInput::SaveConfig(Common::IniFile::Section* section, + const std::string& default_device, const std::string& base_name) { ControlGroup::SaveConfig(section, default_device, base_name); |
