summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Michaël Banaan Ananas <happppp@users.noreply.github.com>2013-12-23 22:10:19 +0000
committer Michaël Banaan Ananas <happppp@users.noreply.github.com>2013-12-23 22:10:19 +0000
commit056327000623e5bebfca2f86b1de663bbe8552fa (patch)
treebdbecdd02b5299836ab121009934ead9fb78f80c
parentc29b6a9235b2ec694c079835d41a205396546f70 (diff)
nemesis.c: added PORT_TOGGLE and PORT_NAMEs to Konami GT [baritonomarchetto]
(outrun motor patch was submitted too, will look at that later)
-rw-r--r--src/mame/drivers/nemesis.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/nemesis.c b/src/mame/drivers/nemesis.c
index b8e42db8195..77690120953 100644
--- a/src/mame/drivers/nemesis.c
+++ b/src/mame/drivers/nemesis.c
@@ -694,15 +694,15 @@ static INPUT_PORTS_START( konamigt )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_START("IN1")
- PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON3 ) /* gear */
+ PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_BUTTON3 ) PORT_NAME("Gear Shift") PORT_TOGGLE
PORT_BIT( 0xef, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_START("IN2")
PORT_BIT( 0xff, IP_ACTIVE_HIGH, IPT_UNKNOWN )
PORT_START("IN3")
- PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON2 )
- PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON1 )
+ PORT_BIT( 0x20, IP_ACTIVE_HIGH, IPT_BUTTON2 ) PORT_NAME("Brake")
+ PORT_BIT( 0x40, IP_ACTIVE_HIGH, IPT_BUTTON1 ) PORT_NAME("Accelerator")
// PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_BUTTON4 )
PORT_START("DSW0")