diff options
author | 2013-09-17 23:28:45 +0000 | |
---|---|---|
committer | 2013-09-17 23:28:45 +0000 | |
commit | b145f213cfa3d616bef33f277f17e8a2f68eb49b (patch) | |
tree | 0083ba71d6e95e035628ce9fd539c4649a2e534e | |
parent | daf229306dbf2f610b3f364aae4b294f793b9302 (diff) |
kungfum: Use 8-way joysticks [Phil Bennett]
Reference: http://www.crazykong.com/manuals/KungFuMaster.man.pdf
-rw-r--r-- | src/mame/drivers/m62.c | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/mame/drivers/m62.c b/src/mame/drivers/m62.c index f839a04e05f..b6be4d13848 100644 --- a/src/mame/drivers/m62.c +++ b/src/mame/drivers/m62.c @@ -423,26 +423,6 @@ INPUT_PORTS_END static INPUT_PORTS_START( kungfum ) PORT_INCLUDE( common ) - PORT_MODIFY("P1") - PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_4WAY - PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_4WAY - PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_4WAY - PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_4WAY - PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* probably unused */ - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) - PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* probably unused */ - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON1 ) - - PORT_MODIFY("P2") - PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_COCKTAIL - PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_COCKTAIL - PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_4WAY PORT_COCKTAIL - PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_4WAY PORT_COCKTAIL - PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_COIN2 ) - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_COCKTAIL - PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_UNKNOWN ) /* probably unused */ - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL - PORT_MODIFY("DSW2") /* In slowmo mode, press 2 to slow game speed */ PORT_DIPNAME( 0x08, 0x08, "Slow Motion Mode (Cheat)" ) PORT_DIPLOCATION("SW2:4") |