summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author AJR <ariedlmayer@gmail.com>2024-11-21 09:22:06 -0500
committer AJR <ariedlmayer@gmail.com>2024-11-21 09:22:06 -0500
commitc6cbcfc57bf2460143f413b94e5d0fc247b7fa97 (patch)
tree346dfec2ae35ea3e7f003e72a2cb5bed35c87d11 /src
parent5fd88f03f29245b1c725cf3805a8f3e680ee8e6f (diff)
nightmare: Set joysticks to 4-way
Diffstat (limited to 'src')
-rw-r--r--src/mame/efo/nightmare.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mame/efo/nightmare.cpp b/src/mame/efo/nightmare.cpp
index 42d8bfa8df4..762e1ad6e16 100644
--- a/src/mame/efo/nightmare.cpp
+++ b/src/mame/efo/nightmare.cpp
@@ -383,14 +383,14 @@ uint32_t nightmare_state::screen_update_nightmare(screen_device &screen, bitmap_
// Note: cocktail mode setting is saved in EEPROM
static INPUT_PORTS_START( nightmare )
PORT_START("IN0")
- PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_UP )
- PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN )
- PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT )
- PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT )
- PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_COCKTAIL
- PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_COCKTAIL
- PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_COCKTAIL
- PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_COCKTAIL
+ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_4WAY
+ PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_4WAY
+ PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_4WAY
+ PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_4WAY
+ PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_JOYSTICK_UP ) PORT_4WAY PORT_COCKTAIL
+ PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_JOYSTICK_DOWN ) PORT_4WAY PORT_COCKTAIL
+ PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_JOYSTICK_RIGHT ) PORT_4WAY PORT_COCKTAIL
+ PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_JOYSTICK_LEFT ) PORT_4WAY PORT_COCKTAIL
PORT_START("IN1")
PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_START1 )