diff options
| author | 2022-01-30 09:15:29 -0600 | |
|---|---|---|
| committer | 2022-01-30 09:17:22 -0600 | |
| commit | 3d2d77eb3f0e0b5cb9c881d33ba2406e61736723 (patch) | |
| tree | 1353da12f172cc54af4c98d97b7aa20c92440333 /src/input_common/drivers/udp_client.h | |
| parent | Merge pull request #7791 from german77/wall_clock (diff) | |
| download | yuzu-3d2d77eb3f0e0b5cb9c881d33ba2406e61736723.tar.gz yuzu-3d2d77eb3f0e0b5cb9c881d33ba2406e61736723.tar.xz yuzu-3d2d77eb3f0e0b5cb9c881d33ba2406e61736723.zip | |
input_common: Add home and hard touch press buttons to UDP controllers
Diffstat (limited to 'src/input_common/drivers/udp_client.h')
| -rw-r--r-- | src/input_common/drivers/udp_client.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input_common/drivers/udp_client.h b/src/input_common/drivers/udp_client.h index 30d7c2682..e9c178139 100644 --- a/src/input_common/drivers/udp_client.h +++ b/src/input_common/drivers/udp_client.h | |||
| @@ -84,7 +84,9 @@ private: | |||
| 84 | Cross = 0x4000, | 84 | Cross = 0x4000, |
| 85 | Square = 0x8000, | 85 | Square = 0x8000, |
| 86 | Touch1 = 0x10000, | 86 | Touch1 = 0x10000, |
| 87 | touch2 = 0x20000, | 87 | Touch2 = 0x20000, |
| 88 | Home = 0x40000, | ||
| 89 | TouchHardPress = 0x80000, | ||
| 88 | }; | 90 | }; |
| 89 | 91 | ||
| 90 | enum class PadAxes : u8 { | 92 | enum class PadAxes : u8 { |