diff options
author | german77 <juangerman-13@hotmail.com> | 2021-10-20 14:41:56 -0500 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2021-11-24 20:30:24 -0600 |
commit | c3ff0a8ac0d1c3f9c0791b5263dae53c06ad6048 (patch) | |
tree | 9ecde3ad19cbbb29f418655fc0125cef6c7b31ab /src/common/input.h | |
parent | 601ac43495904f3f7666d79a800a8b4eda5a8461 (diff) |
core/hid: Fix rumble too strong at 1%
Diffstat (limited to 'src/common/input.h')
-rw-r--r-- | src/common/input.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/input.h b/src/common/input.h index 8871a9d078..cdacd46897 100644 --- a/src/common/input.h +++ b/src/common/input.h @@ -60,6 +60,12 @@ enum class PollingError { Unknown, }; +// Hint for amplification curve to be used +enum class VibrationAmplificationType { + Linear, + Exponential, +}; + struct AnalogProperties { float deadzone{}; float range{1.0f}; @@ -126,6 +132,7 @@ struct VibrationStatus { f32 low_frequency{}; f32 high_amplitude{}; f32 high_frequency{}; + VibrationAmplificationType type; }; struct LedStatus { |