diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2020-02-22 10:27:43 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2020-02-22 10:27:43 -0600 |
| commit | da12f3eebc47f3928f7a8e9176549267e579df68 (patch) | |
| tree | e81cb63c817c394c554d7268354120f2a40e88cf /Source/Core/InputCommon/ControllerInterface/Touch | |
| parent | 2b6a1ee4d87a80418ade913e15745d78309f7f67 (diff) | |
InputCommon: Constify Device::Input::IsDetectable function.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Touch')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Touch/Touchscreen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Touch/Touchscreen.h b/Source/Core/InputCommon/ControllerInterface/Touch/Touchscreen.h index 26091c4b38..ec060040d4 100644 --- a/Source/Core/InputCommon/ControllerInterface/Touch/Touchscreen.h +++ b/Source/Core/InputCommon/ControllerInterface/Touch/Touchscreen.h @@ -27,7 +27,7 @@ private: { public: std::string GetName() const; - bool IsDetectable() override { return false; } + bool IsDetectable() const override { return false; } Axis(int pad_id, ButtonManager::ButtonType index, float neg = 1.0f) : m_pad_id(pad_id), m_index(index), m_neg(neg) { |
