diff options
| author | Mat M <mathew1800@gmail.com> | 2020-02-22 16:50:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-02-22 16:50:27 -0500 |
| commit | edad018213186fa9cae6fe0785462377afa02bac (patch) | |
| tree | e81cb63c817c394c554d7268354120f2a40e88cf /Source/Core/InputCommon/ControllerInterface/Wiimote | |
| parent | 2b6a1ee4d87a80418ade913e15745d78309f7f67 (diff) | |
| parent | da12f3eebc47f3928f7a8e9176549267e579df68 (diff) | |
Merge pull request #8638 from jordan-woyak/is-detectable-constify
InputCommon: Constify Device::Input::IsDetectable function.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Wiimote')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp b/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp index 34a169aa83..059138e52a 100644 --- a/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp +++ b/Source/Core/InputCommon/ControllerInterface/Wiimote/Wiimote.cpp @@ -48,7 +48,7 @@ public: { } - bool IsDetectable() override { return Detectable; } + bool IsDetectable() const override { return Detectable; } std::string GetName() const override { return m_name; } |
