diff options
author | bunnei <bunneidev@gmail.com> | 2023-01-07 22:41:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-07 22:41:27 +0100 |
commit | 66e4a48b75d7f60cab1349ce896be696b761fb39 (patch) | |
tree | bba44049730b407d379d4aab995c12515b46fc7b /src/common | |
parent | Merge pull request #9578 from bylaws/patch-2 (diff) | |
parent | input_common: Create an update engine (diff) | |
download | yuzu-66e4a48b75d7f60cab1349ce896be696b761fb39.tar yuzu-66e4a48b75d7f60cab1349ce896be696b761fb39.tar.gz yuzu-66e4a48b75d7f60cab1349ce896be696b761fb39.tar.bz2 yuzu-66e4a48b75d7f60cab1349ce896be696b761fb39.tar.lz yuzu-66e4a48b75d7f60cab1349ce896be696b761fb39.tar.xz yuzu-66e4a48b75d7f60cab1349ce896be696b761fb39.tar.zst yuzu-66e4a48b75d7f60cab1349ce896be696b761fb39.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/input.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/common/input.h b/src/common/input.h index fc14fd7bf..d27b1d772 100644 --- a/src/common/input.h +++ b/src/common/input.h @@ -292,9 +292,6 @@ class InputDevice { public: virtual ~InputDevice() = default; - // Request input device to update if necessary - virtual void SoftUpdate() {} - // Force input device to update data regardless of the current state virtual void ForceUpdate() {} |