diff options
author | 2022-05-14 18:41:30 -0800 | |
---|---|---|
committer | 2022-05-15 12:41:30 +1000 | |
commit | 442b04339c5fc87b02db2a898e690879c9cd601e (patch) | |
tree | 05a8c41b5837a8b06b0d0609d8d6b4701e5bd09c | |
parent | b3225de898347772c504511b72e1df6c973f82c8 (diff) |
bus/vcs_ctrl: Fixed swapped paddle buttons (fixes #9755). (#9756)
-rw-r--r-- | src/devices/bus/vcs_ctrl/paddles.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/vcs_ctrl/paddles.cpp b/src/devices/bus/vcs_ctrl/paddles.cpp index 09e7a0d26a5..46084663356 100644 --- a/src/devices/bus/vcs_ctrl/paddles.cpp +++ b/src/devices/bus/vcs_ctrl/paddles.cpp @@ -20,8 +20,8 @@ DEFINE_DEVICE_TYPE(VCS_PADDLES, vcs_paddles_device, "vcs_paddles", "Atari / CBM static INPUT_PORTS_START( vcs_paddles ) PORT_START("JOY") - PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1) - PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2) + PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(2) + PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_PLAYER(1) PORT_BIT( 0xf3, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_START("POTX") |