summaryrefslogtreecommitdiffstats
path: root/src/common/input.h
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-10-21 07:23:12 +0200
committergerman77 <juangerman-13@hotmail.com>2022-10-21 07:24:08 +0200
commit7f66050f0c383a5c7d82c5c58098f819d4e1e0bc (patch)
tree8d449371387a14d7564381037d8deade468ee010 /src/common/input.h
parentMerge pull request #9088 from Fdawgs/chore/images (diff)
downloadyuzu-7f66050f0c383a5c7d82c5c58098f819d4e1e0bc.tar
yuzu-7f66050f0c383a5c7d82c5c58098f819d4e1e0bc.tar.gz
yuzu-7f66050f0c383a5c7d82c5c58098f819d4e1e0bc.tar.bz2
yuzu-7f66050f0c383a5c7d82c5c58098f819d4e1e0bc.tar.lz
yuzu-7f66050f0c383a5c7d82c5c58098f819d4e1e0bc.tar.xz
yuzu-7f66050f0c383a5c7d82c5c58098f819d4e1e0bc.tar.zst
yuzu-7f66050f0c383a5c7d82c5c58098f819d4e1e0bc.zip
Diffstat (limited to '')
-rw-r--r--src/common/input.h5
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;
}