diff options
author | 2022-10-18 17:31:03 -0400 | |
---|---|---|
committer | 2022-10-18 17:31:03 -0400 | |
commit | 6c5326a0578f73e53e8875b3fb544b1ab4da8b87 (patch) | |
tree | 1af327e238620d223b5c4ef1f3792633f70d2415 /src/devices/bus/vcs_ctrl/joystick.cpp | |
parent | 8773b0f0008104c353d344e17c5d93a7a4ea1a1f (diff) |
vcs_ctrl: Some fixes
- Hook up trigger pin writes for currently unused callback
- Invert analog ports for paddle controller
Diffstat (limited to 'src/devices/bus/vcs_ctrl/joystick.cpp')
-rw-r--r-- | src/devices/bus/vcs_ctrl/joystick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/vcs_ctrl/joystick.cpp b/src/devices/bus/vcs_ctrl/joystick.cpp index c911f435a0c..e68ec423d67 100644 --- a/src/devices/bus/vcs_ctrl/joystick.cpp +++ b/src/devices/bus/vcs_ctrl/joystick.cpp @@ -24,7 +24,7 @@ static INPUT_PORTS_START( vcs_joystick ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_8WAY PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_8WAY PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_8WAY - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1 ) + PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_WRITE_LINE_MEMBER(vcs_joystick_device, trigger_w) PORT_BIT( 0xd0, IP_ACTIVE_LOW, IPT_UNUSED ) INPUT_PORTS_END |