summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-06-07 17:55:14 -0500
committerGitHub <noreply@github.com>2025-06-07 17:55:14 -0500
commit65f3ba70f5a88a25eeb7fef143b8e46093e30a7a (patch)
treea550dbcced888ddc1fe57bbe575373d9c0fb3f46 /Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp
parentec52a7496723f9b59c37003ac0296e6a2f7e911c (diff)
parentf240e20e3f8250d279255fe48ba6ab351b581679 (diff)
Merge pull request #13522 from tygyh/Enforce-overriding-destructor-style-Core&UnitTests
Core & UnitTests: Make overriding explicit and remove redundant virtual specifiers on overriding destructors
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp
index c4e5fe028f..9b5fe3c1e9 100644
--- a/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/Wiimote/WiimoteController.cpp
@@ -51,7 +51,7 @@ public:
std::string GetName() const override { return m_name; }
- ControlState GetState() const final override { return ControlState(m_value) / m_extent; }
+ ControlState GetState() const final { return ControlState(m_value) / m_extent; }
protected:
const T& m_value;