diff options
author | 2017-07-30 01:02:30 +0200 | |
---|---|---|
committer | 2017-07-30 01:02:30 +0200 | |
commit | 3076e3a22b67966f8947e1a11b2ff30c6c2ccfa1 (patch) | |
tree | 6fd125b5126e9444ce44bee56de1dda8a8b562e0 | |
parent | c8c3f073f9f02ad2d99f6b46d9b3c784327a5be2 (diff) |
hh_sm510: fix a copypaste error (nw)
-rw-r--r-- | src/mame/drivers/hh_sm510.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/hh_sm510.cpp b/src/mame/drivers/hh_sm510.cpp index 75b3b1e2e1e..a5ce33edfc7 100644 --- a/src/mame/drivers/hh_sm510.cpp +++ b/src/mame/drivers/hh_sm510.cpp @@ -916,7 +916,7 @@ static INPUT_PORTS_START( kbucky ) PORT_START("IN.1") // S2 PORT_BIT( 0x01, IP_ACTIVE_HIGH, IPT_JOYSTICK_DOWN ) PORT_CHANGED_MEMBER(DEVICE_SELF, hh_sm510_state, input_changed, nullptr) - PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_CHANGED_MEMBER(DEVICE_SELF, hh_sm510_state, input_changed, nullptr) PORT_NAME("Sound") + PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_UNUSED ) PORT_BIT( 0x04, IP_ACTIVE_HIGH, IPT_POWER_OFF ) PORT_CHANGED_MEMBER(DEVICE_SELF, hh_sm510_state, input_changed, nullptr) PORT_BIT( 0x08, IP_ACTIVE_HIGH, IPT_VOLUME_DOWN ) PORT_CHANGED_MEMBER(DEVICE_SELF, hh_sm510_state, input_changed, nullptr) PORT_NAME("Sound") |