summaryrefslogtreecommitdiff
path: root/src/common/input.h
diff options
context:
space:
mode:
authorGravatar german772021-10-31 10:41:44 -0500
committerGravatar Narr the Reg2021-11-24 20:30:26 -0600
commit730f07830247cfcdc551c253d30c6717fc16316c (patch)
tree9a0d7dbee51ad20e4a174c1be08816289a586d6a /src/common/input.h
parentkraken: Address comments from review (diff)
downloadyuzu-730f07830247cfcdc551c253d30c6717fc16316c.tar.gz
yuzu-730f07830247cfcdc551c253d30c6717fc16316c.tar.xz
yuzu-730f07830247cfcdc551c253d30c6717fc16316c.zip
settings: Fix Debug controller type options
Diffstat (limited to 'src/common/input.h')
-rw-r--r--src/common/input.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/input.h b/src/common/input.h
index 6d3227f5e..16b1e6f1b 100644
--- a/src/common/input.h
+++ b/src/common/input.h
@@ -100,7 +100,7 @@ struct StickStatus {
100 100
101struct TriggerStatus { 101struct TriggerStatus {
102 AnalogStatus analog{}; 102 AnalogStatus analog{};
103 bool pressed{}; 103 ButtonStatus pressed{};
104}; 104};
105 105
106struct MotionSensor { 106struct MotionSensor {
@@ -119,7 +119,7 @@ struct TouchStatus {
119 ButtonStatus pressed{}; 119 ButtonStatus pressed{};
120 AnalogStatus x{}; 120 AnalogStatus x{};
121 AnalogStatus y{}; 121 AnalogStatus y{};
122 u32 id{}; 122 int id{};
123}; 123};
124 124
125struct BodyColorStatus { 125struct BodyColorStatus {