summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar Narr the Reg2023-05-05 17:11:53 -0600
committerGravatar Narr the Reg2023-05-05 17:18:35 -0600
commitf017335fef95d2cecc0fcda185f0e59cc1945101 (patch)
tree3c119e1e6f51506e039a519b0baf245ae9b41747 /src/common
parentyuzu: Add motion preview to controller input (diff)
downloadyuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.gz
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.tar.xz
yuzu-f017335fef95d2cecc0fcda185f0e59cc1945101.zip
input_common: Add property to invert an axis button
Diffstat (limited to 'src/common')
-rw-r--r--src/common/input.h2
-rw-r--r--src/common/vector_math.h2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/common/input.h b/src/common/input.h
index 51b277c1f..66fb15f0a 100644
--- a/src/common/input.h
+++ b/src/common/input.h
@@ -111,6 +111,8 @@ struct AnalogProperties {
111 float offset{}; 111 float offset{};
112 // Invert direction of the sensor data 112 // Invert direction of the sensor data
113 bool inverted{}; 113 bool inverted{};
114 // Invert the state if it's converted to a button
115 bool inverted_button{};
114 // Press once to activate, press again to release 116 // Press once to activate, press again to release
115 bool toggle{}; 117 bool toggle{};
116}; 118};
diff --git a/src/common/vector_math.h b/src/common/vector_math.h
index 9a7d50abd..b4885835d 100644
--- a/src/common/vector_math.h
+++ b/src/common/vector_math.h
@@ -265,7 +265,7 @@ public:
265 z = std::sin(roll) * temp + std::cos(roll) * z; 265 z = std::sin(roll) * temp + std::cos(roll) * z;
266 266
267 temp = x; 267 temp = x;
268 x = std::cosf(pitch) * x + std::sin(pitch) * z; 268 x = std::cos(pitch) * x + std::sin(pitch) * z;
269 z = -std::sin(pitch) * temp + std::cos(pitch) * z; 269 z = -std::sin(pitch) * temp + std::cos(pitch) * z;
270 270
271 temp = x; 271 temp = x;