diff options
author | 2015-01-05 20:42:40 -0500 | |
---|---|---|
committer | 2015-01-05 20:42:40 -0500 | |
commit | a7bf91ae9b56064c1cfcfec73ac4969263bf643c (patch) | |
tree | f3186b836fd832fb99341dd84d269e40513677bf | |
parent | 95243821ab3b49180c437c9304d6737ee6c94fda (diff) |
Fixed button assignments to match actual hardware (swapped A&B) which makes Treasure Hunt play more logically as well. (nw)
-rw-r--r-- | src/mess/drivers/gamate.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/drivers/gamate.c b/src/mess/drivers/gamate.c index 4ef0a94ab4a..1065bc03f02 100644 --- a/src/mess/drivers/gamate.c +++ b/src/mess/drivers/gamate.c @@ -206,10 +206,10 @@ static INPUT_PORTS_START( gamate ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) - PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1) PORT_NAME("A") - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2) PORT_NAME("B") - PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_START) PORT_NAME("start/pause") - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_SELECT) PORT_NAME("select") + PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON2) PORT_NAME("A") + PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1) PORT_NAME("B") + PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_START) PORT_NAME("Start/Pause") + PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_SELECT) PORT_NAME("Select") INPUT_PORTS_END #ifdef UNUSED_CODE |