diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-25 18:13:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 18:13:18 +0200 |
commit | 77803d96be3f6ec590b63966359b8f5fa56013db (patch) | |
tree | 1c6b80a6ee305d457319ccacd71de333eaaf43f9 /src/common | |
parent | Merge pull request #9112 from vonchenplus/deferred_draw (diff) | |
parent | input_common: cache vibration tests (diff) | |
download | yuzu-77803d96be3f6ec590b63966359b8f5fa56013db.tar yuzu-77803d96be3f6ec590b63966359b8f5fa56013db.tar.gz yuzu-77803d96be3f6ec590b63966359b8f5fa56013db.tar.bz2 yuzu-77803d96be3f6ec590b63966359b8f5fa56013db.tar.lz yuzu-77803d96be3f6ec590b63966359b8f5fa56013db.tar.xz yuzu-77803d96be3f6ec590b63966359b8f5fa56013db.tar.zst yuzu-77803d96be3f6ec590b63966359b8f5fa56013db.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/input.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/input.h b/src/common/input.h index b533f3844..cb30b7254 100644 --- a/src/common/input.h +++ b/src/common/input.h @@ -100,7 +100,6 @@ enum class CameraError { enum class VibrationAmplificationType { Linear, Exponential, - Test, }; // Analog properties for calibration @@ -325,6 +324,10 @@ public: return VibrationError::NotSupported; } + virtual bool IsVibrationEnabled() { + return false; + } + virtual PollingError SetPollingMode([[maybe_unused]] PollingMode polling_mode) { return PollingError::NotSupported; } |