mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-04-18 14:42:33 +00:00
Fix max gamepad count to match protocol limitation
This commit is contained in:
parent
feedede6f9
commit
12e6774035
@ -47,7 +47,8 @@ namespace video {
|
|||||||
} // namespace video
|
} // namespace video
|
||||||
|
|
||||||
namespace platf {
|
namespace platf {
|
||||||
constexpr auto MAX_GAMEPADS = 32;
|
// Limited by bits in activeGamepadMask
|
||||||
|
constexpr auto MAX_GAMEPADS = 16;
|
||||||
|
|
||||||
constexpr std::uint32_t DPAD_UP = 0x0001;
|
constexpr std::uint32_t DPAD_UP = 0x0001;
|
||||||
constexpr std::uint32_t DPAD_DOWN = 0x0002;
|
constexpr std::uint32_t DPAD_DOWN = 0x0002;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user