summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/InputCommon/ControllerEmu/StickGate.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerEmu/StickGate.cpp11
1 files changed, 4 insertions, 7 deletions
diff --git a/Source/Core/InputCommon/ControllerEmu/StickGate.cpp b/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
index 2c82788b99..c1e8a29b2d 100644
--- a/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
+++ b/Source/Core/InputCommon/ControllerEmu/StickGate.cpp
@@ -10,7 +10,6 @@
#include <fmt/format.h>
#include <fmt/ranges.h>
-#include "Common/Common.h"
#include "Common/MathUtil.h"
#include "Common/Matrix.h"
#include "Common/StringUtil.h"
@@ -228,10 +227,9 @@ void ReshapableInput::SetCenter(ReshapableInput::ReshapeData center)
m_center = center;
}
-void ReshapableInput::LoadConfig(Common::IniFile::Section* section,
- const std::string& default_device, const std::string& base_name)
+void ReshapableInput::LoadConfig(Common::IniFile::Section* section, const std::string& base_name)
{
- ControlGroup::LoadConfig(section, default_device, base_name);
+ ControlGroup::LoadConfig(section, base_name);
const std::string group(base_name + name + '/');
@@ -271,10 +269,9 @@ void ReshapableInput::LoadConfig(Common::IniFile::Section* section,
}
}
-void ReshapableInput::SaveConfig(Common::IniFile::Section* section,
- const std::string& default_device, const std::string& base_name)
+void ReshapableInput::SaveConfig(Common::IniFile::Section* section, const std::string& base_name)
{
- ControlGroup::SaveConfig(section, default_device, base_name);
+ ControlGroup::SaveConfig(section, base_name);
const std::string group(base_name + name + '/');