diff options
author | 2016-07-09 22:10:45 -0300 | |
---|---|---|
committer | 2016-07-09 22:10:45 -0300 | |
commit | 5da8e6389a0048ec76786342c08b326f2c414cf6 (patch) | |
tree | 33f2562d8710f135901fcf463eb6b6b4ce004cc8 | |
parent | 72a499b54a7dd20fcab34d5b541e0f12ea23c8c5 (diff) |
Naming Neo-Geo AES and Neo-Geo CD input ports
The same way as the original controllers for these systems
-rw-r--r-- | src/devices/bus/neogeo_ctrl/joystick.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/bus/neogeo_ctrl/joystick.cpp b/src/devices/bus/neogeo_ctrl/joystick.cpp index f30b4fa2102..5dbb605434a 100644 --- a/src/devices/bus/neogeo_ctrl/joystick.cpp +++ b/src/devices/bus/neogeo_ctrl/joystick.cpp @@ -30,10 +30,10 @@ static INPUT_PORTS_START( neogeo_joy ) 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_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) - PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON3 ) - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON4 ) + 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_BUTTON3 ) PORT_NAME("C") + PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON4 ) PORT_NAME("D") PORT_START("START_SELECT") PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_START ) |