diff options
author | bunnei <bunneidev@gmail.com> | 2022-02-01 22:37:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 22:37:13 -0700 |
commit | 72add82ee99bdf43d655bf33c005da1002f0e650 (patch) | |
tree | 1c4efefe60c16ad411b6db7afb333dcce36070b0 /src/input_common/drivers/udp_client.h | |
parent | 79e8f4abe81b3599104ae91401d11a07c2eff208 (diff) | |
parent | 3d2d77eb3f0e0b5cb9c881d33ba2406e61736723 (diff) |
Merge pull request #7807 from german77/moar-buttons
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: Cross = 0x4000, Square = 0x8000, Touch1 = 0x10000, - touch2 = 0x20000, + Touch2 = 0x20000, + Home = 0x40000, + TouchHardPress = 0x80000, }; enum class PadAxes : u8 { |