summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2021-12-14 02:43:09 +0100
committerLioncash <mathew1800@gmail.com>2021-12-14 02:43:12 +0100
commit54eafbaf172309d92c6b2c5069de23fc534dd2d2 (patch)
tree7de751d5f82979461c35c60feb983526618a3b48
parentinput_poller: Add missing override specifiers (diff)
downloadyuzu-54eafbaf172309d92c6b2c5069de23fc534dd2d2.tar
yuzu-54eafbaf172309d92c6b2c5069de23fc534dd2d2.tar.gz
yuzu-54eafbaf172309d92c6b2c5069de23fc534dd2d2.tar.bz2
yuzu-54eafbaf172309d92c6b2c5069de23fc534dd2d2.tar.lz
yuzu-54eafbaf172309d92c6b2c5069de23fc534dd2d2.tar.xz
yuzu-54eafbaf172309d92c6b2c5069de23fc534dd2d2.tar.zst
yuzu-54eafbaf172309d92c6b2c5069de23fc534dd2d2.zip
-rw-r--r--src/common/input.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/common/input.h b/src/common/input.h
index 0b92449bc..848ad7b81 100644
--- a/src/common/input.h
+++ b/src/common/input.h
@@ -236,14 +236,10 @@ public:
virtual ~InputDevice() = default;
// Request input device to update if necessary
- virtual void SoftUpdate() {
- return;
- }
+ virtual void SoftUpdate() {}
// Force input device to update data regardless of the current state
- virtual void ForceUpdate() {
- return;
- }
+ virtual void ForceUpdate() {}
// Sets the function to be triggered when input changes
void SetCallback(InputCallback callback_) {