diff options
| author | 2021-10-31 10:41:44 -0500 | |
|---|---|---|
| committer | 2021-11-24 20:30:26 -0600 | |
| commit | 730f07830247cfcdc551c253d30c6717fc16316c (patch) | |
| tree | 9a0d7dbee51ad20e4a174c1be08816289a586d6a /src/common/input.h | |
| parent | kraken: Address comments from review (diff) | |
| download | yuzu-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.h | 4 |
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 | ||
| 101 | struct TriggerStatus { | 101 | struct TriggerStatus { |
| 102 | AnalogStatus analog{}; | 102 | AnalogStatus analog{}; |
| 103 | bool pressed{}; | 103 | ButtonStatus pressed{}; |
| 104 | }; | 104 | }; |
| 105 | 105 | ||
| 106 | struct MotionSensor { | 106 | struct 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 | ||
| 125 | struct BodyColorStatus { | 125 | struct BodyColorStatus { |