diff options
author | 2020-07-18 14:09:51 +0200 | |
---|---|---|
committer | 2020-07-18 08:09:51 -0400 | |
commit | 73bbbef8a96c9c17975ea4a37bb51ab8af59a72c (patch) | |
tree | 37894b40d627393e6557ca4cefe619b97855d9ae | |
parent | de153ba41247bf278fa64f3c283b6f4af9daa2ed (diff) |
namcos2: Fix default gearshift binding in Four Trax
-rw-r--r-- | src/mame/drivers/namcos2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/namcos2.cpp b/src/mame/drivers/namcos2.cpp index 9617515f6db..dc1085cfa80 100644 --- a/src/mame/drivers/namcos2.cpp +++ b/src/mame/drivers/namcos2.cpp @@ -1291,7 +1291,7 @@ static INPUT_PORTS_START( fourtrax ) PORT_DIPNAME( 0x10, 0x10, "PortH 0x10") PORT_DIPSETTING( 0x10, "H" ) PORT_DIPSETTING( 0x00, "L" ) - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_TOGGLE + PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_NAME("Gear Shift") PORT_TOGGLE PORT_DIPNAME( 0x40, 0x40, "PortH 0x40") PORT_DIPSETTING( 0x40, "H" ) PORT_DIPSETTING( 0x00, "L" ) |