diff options
| author | 2021-11-26 15:45:37 -0600 | |
|---|---|---|
| committer | 2021-11-26 15:46:36 -0600 | |
| commit | 639402850ac65c694967ef6519becb65abe89b39 (patch) | |
| tree | 55ab559c417a519ac8b93a746428842e53c19a31 /src/common/input.h | |
| parent | service/hid: Finish converting LIFO objects and address some nits (diff) | |
| download | yuzu-639402850ac65c694967ef6519becb65abe89b39.tar.gz yuzu-639402850ac65c694967ef6519becb65abe89b39.tar.xz yuzu-639402850ac65c694967ef6519becb65abe89b39.zip | |
input_common: Fully implement UDP controllers
Diffstat (limited to 'src/common/input.h')
| -rw-r--r-- | src/common/input.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/common/input.h b/src/common/input.h index cc0cbd9b8..eaee0bdea 100644 --- a/src/common/input.h +++ b/src/common/input.h | |||
| @@ -195,6 +195,20 @@ enum class ButtonNames { | |||
| 195 | ButtonX, | 195 | ButtonX, |
| 196 | ButtonY, | 196 | ButtonY, |
| 197 | ButtonStart, | 197 | ButtonStart, |
| 198 | |||
| 199 | // DS4 button names | ||
| 200 | L1, | ||
| 201 | L2, | ||
| 202 | L3, | ||
| 203 | R1, | ||
| 204 | R2, | ||
| 205 | R3, | ||
| 206 | Circle, | ||
| 207 | Cross, | ||
| 208 | Square, | ||
| 209 | Triangle, | ||
| 210 | Share, | ||
| 211 | Options, | ||
| 198 | }; | 212 | }; |
| 199 | 213 | ||
| 200 | // Callback data consisting of an input type and the equivalent data status | 214 | // Callback data consisting of an input type and the equivalent data status |