diff options
| author | 2009-10-27 15:21:12 +0000 | |
|---|---|---|
| committer | 2009-10-27 15:21:12 +0000 | |
| commit | 4f2c535f9249b316fa486a93f82d7fdf3272c007 (patch) | |
| tree | 35d694365aaa34a5258d6959feb57a31895754a2 | |
| parent | d5c65d8aef4c9797e5c033d243fda0cc0415cbc3 (diff) | |
Fixed vroulet controls so that the Red column can be selected. [luigi30]
> -----Original Message-----
> From: Luigi30 [mailto:luigi30@gmail.com]
> Sent: Monday, October 26, 2009 6:49 AM
> To: submit@mamedev.org
> Subject: vroul controls fix
>
> Fixes vroulet controls so that the Red column can be selected.
| -rw-r--r-- | src/mame/drivers/vroulet.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/drivers/vroulet.c b/src/mame/drivers/vroulet.c index 52bf627842c..3dc0d07f645 100644 --- a/src/mame/drivers/vroulet.c +++ b/src/mame/drivers/vroulet.c @@ -134,13 +134,13 @@ static INPUT_PORTS_START( vroulet ) PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_OTHER ) PORT_CODE(KEYCODE_4) PORT_NAME("Payout") PORT_START("IN1") - PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNUSED ) // button1 duplicate - PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON1 ) - PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON2 ) - PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON3 ) - PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON4 ) - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON5 ) - PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON6 ) + PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_NAME("Red") + PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_NAME("Blue") + PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_BUTTON3 ) PORT_NAME("2") + PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("4") + PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON5 ) PORT_NAME("6") + PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON6 ) PORT_NAME("10") + PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON7 ) PORT_NAME("20") PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_START1 ) PORT_START("IN2") |
