summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
diff options
context:
space:
mode:
authorDr. Dystopia <jonis9898@hotmail.com>2024-08-18 15:08:44 +0200
committerDr. Dystopia <jonis9898@hotmail.com>2024-08-20 14:59:54 +0200
commit9602f36248edec803275128a0a327e3355f9472d (patch)
treef7fa6860c78a8650bfb2e0b6b43682960fd5f2b6 /Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
parent4ff5ff27722a30ce1071a604774cd3e04443a102 (diff)
Remove redundant semicolons
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
index feb1f8f4ce..0dfcd51281 100644
--- a/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
+++ b/Source/Core/InputCommon/ControllerInterface/SDL/SDL.cpp
@@ -244,10 +244,12 @@ private:
public:
MotionInput(std::string name, SDL_GameController* gc, SDL_SensorType type, int index,
ControlState scale)
- : m_name(std::move(name)), m_gc(gc), m_type(type), m_index(index), m_scale(scale){};
+ : m_name(std::move(name)), m_gc(gc), m_type(type), m_index(index), m_scale(scale)
+ {
+ }
- std::string GetName() const override { return m_name; };
- bool IsDetectable() const override { return false; };
+ std::string GetName() const override { return m_name; }
+ bool IsDetectable() const override { return false; }
ControlState GetState() const override;
private: