summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ted Green <tedgreen99@protonmail.com>2018-04-15 11:16:21 -0600
committer Ted Green <tedgreen99@protonmail.com>2018-04-15 11:17:45 -0600
commit0b66c6d21c319fb20203302079e9b49169c956a4 (patch)
tree4095937d28e601913f91d4c3a804f816e11086a4
parentb278bc27f3394898a84d0ea0e2d40091c883b159 (diff)
seattle.cpp: Fix volume button mapping for sfrush. (nw)
-rw-r--r--src/mame/drivers/seattle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/seattle.cpp b/src/mame/drivers/seattle.cpp
index f445296127b..3ef3b0879b9 100644
--- a/src/mame/drivers/seattle.cpp
+++ b/src/mame/drivers/seattle.cpp
@@ -1320,8 +1320,8 @@ static INPUT_PORTS_START( sfrush )
PORT_BIT( 0x0040, IP_ACTIVE_LOW, IPT_BUTTON15 ) PORT_NAME("Track 3") PORT_PLAYER(1) /* track 3 */
PORT_BIT( 0x0080, IP_ACTIVE_LOW, IPT_BUTTON16 ) PORT_NAME("Track 4") PORT_PLAYER(1) /* track 4 */
PORT_BIT( 0x0f00, IP_ACTIVE_LOW, IPT_CUSTOM) PORT_CUSTOM_MEMBER(DEVICE_SELF, seattle_state, gearshift_r, "GEAR" )
- PORT_BIT( 0x1000, IP_ACTIVE_LOW, IPT_VOLUME_DOWN )
- PORT_BIT( 0x2000, IP_ACTIVE_LOW, IPT_VOLUME_UP )
+ PORT_BIT( 0x1000, IP_ACTIVE_LOW, IPT_VOLUME_UP )
+ PORT_BIT( 0x2000, IP_ACTIVE_LOW, IPT_VOLUME_DOWN )
PORT_BIT( 0x4000, IP_ACTIVE_LOW, IPT_UNUSED )
PORT_BIT( 0x8000, IP_ACTIVE_LOW, IPT_UNUSED )