diff options
| author | 2022-01-18 18:16:27 -0800 | |
|---|---|---|
| committer | 2022-01-18 18:16:27 -0800 | |
| commit | eceee8e5f484772c80e00092b76b42ab42ef9826 (patch) | |
| tree | 5fbfe7d08ccd2b05aacad5ead06e589cb8e92772 /src/common/input.h | |
| parent | Merge pull request #7712 from bunnei/fix-thread-exit (diff) | |
| parent | input_common: Reintroduce motion from mouse and use button names (diff) | |
| download | yuzu-eceee8e5f484772c80e00092b76b42ab42ef9826.tar.gz yuzu-eceee8e5f484772c80e00092b76b42ab42ef9826.tar.xz yuzu-eceee8e5f484772c80e00092b76b42ab42ef9826.zip | |
Merge pull request #7725 from german77/mouse_in_motion
input_common: Reintroduce motion from mouse and use button names
Diffstat (limited to 'src/common/input.h')
| -rw-r--r-- | src/common/input.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/input.h b/src/common/input.h index f775a4c01..f4f9eb30a 100644 --- a/src/common/input.h +++ b/src/common/input.h | |||
| @@ -209,6 +209,13 @@ enum class ButtonNames { | |||
| 209 | Triangle, | 209 | Triangle, |
| 210 | Share, | 210 | Share, |
| 211 | Options, | 211 | Options, |
| 212 | |||
| 213 | // Mouse buttons | ||
| 214 | ButtonMouseWheel, | ||
| 215 | ButtonBackward, | ||
| 216 | ButtonForward, | ||
| 217 | ButtonTask, | ||
| 218 | ButtonExtra, | ||
| 212 | }; | 219 | }; |
| 213 | 220 | ||
| 214 | // Callback data consisting of an input type and the equivalent data status | 221 | // Callback data consisting of an input type and the equivalent data status |