summaryrefslogtreecommitdiffstats
path: root/src/hid_core/frontend/motion_input.h
diff options
context:
space:
mode:
authorViktor Szépe <viktor@szepe.net>2024-01-16 00:26:53 +0100
committerViktor Szépe <viktor@szepe.net>2024-01-16 00:26:53 +0100
commit2044ae6b3af6fab4d79996a661fef43f6db8d825 (patch)
tree49f827eb5f5cc0eca379bce989cbe9450e4831c9 /src/hid_core/frontend/motion_input.h
parentFix typos in src/core (#12625) (diff)
downloadyuzu-2044ae6b3af6fab4d79996a661fef43f6db8d825.tar
yuzu-2044ae6b3af6fab4d79996a661fef43f6db8d825.tar.gz
yuzu-2044ae6b3af6fab4d79996a661fef43f6db8d825.tar.bz2
yuzu-2044ae6b3af6fab4d79996a661fef43f6db8d825.tar.lz
yuzu-2044ae6b3af6fab4d79996a661fef43f6db8d825.tar.xz
yuzu-2044ae6b3af6fab4d79996a661fef43f6db8d825.tar.zst
yuzu-2044ae6b3af6fab4d79996a661fef43f6db8d825.zip
Diffstat (limited to '')
-rw-r--r--src/hid_core/frontend/motion_input.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hid_core/frontend/motion_input.h b/src/hid_core/frontend/motion_input.h
index 11678983d..c902a3a6e 100644
--- a/src/hid_core/frontend/motion_input.h
+++ b/src/hid_core/frontend/motion_input.h
@@ -13,12 +13,12 @@ class MotionInput {
public:
static constexpr float ThresholdLoose = 0.01f;
static constexpr float ThresholdStandard = 0.007f;
- static constexpr float ThresholdThight = 0.002f;
+ static constexpr float ThresholdTight = 0.002f;
static constexpr float IsAtRestRelaxed = 0.05f;
static constexpr float IsAtRestLoose = 0.02f;
static constexpr float IsAtRestStandard = 0.01f;
- static constexpr float IsAtRestThight = 0.005f;
+ static constexpr float IsAtRestTight = 0.005f;
static constexpr float GyroMaxValue = 5.0f;
static constexpr float AccelMaxValue = 7.0f;