diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2022-10-25 12:13:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 12:13:18 -0400 |
commit | 77803d96be3f6ec590b63966359b8f5fa56013db (patch) | |
tree | 1c6b80a6ee305d457319ccacd71de333eaaf43f9 /src/common/input.h | |
parent | fa913a702f94818fcddf4ffd3aaded41a41b3a3b (diff) | |
parent | 7f66050f0c383a5c7d82c5c58098f819d4e1e0bc (diff) |
Merge pull request #9107 from german77/gidoly_rules
input_common: cache vibration tests
Diffstat (limited to 'src/common/input.h')
-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; } |