From 0df6022122abd12e9f132f73ff20061d79de3acb Mon Sep 17 00:00:00 2001 From: Roberto Fresca Date: Thu, 16 Jan 2025 23:47:17 +0100 Subject: Night Mare: According to the manual, button 1 is INK, button 2 is JUMP. --- src/mame/efo/nightmare.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/mame/efo/nightmare.cpp b/src/mame/efo/nightmare.cpp index 762e1ad6e16..268b31c743c 100644 --- a/src/mame/efo/nightmare.cpp +++ b/src/mame/efo/nightmare.cpp @@ -397,10 +397,12 @@ static INPUT_PORTS_START( nightmare ) PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_START2 ) PORT_BIT( 0x04, IP_ACTIVE_LOW, IPT_COIN1 ) PORT_BIT( 0x08, IP_ACTIVE_LOW, IPT_COIN2 ) - PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON1 ) - PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON2 ) - PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL - PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_COCKTAIL + + // from the manual... button1: ink, button2: jump. + PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_BUTTON2 ) // jump + PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_BUTTON1 ) // ink + PORT_BIT( 0x40, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_COCKTAIL + PORT_BIT( 0x80, IP_ACTIVE_LOW, IPT_BUTTON1 ) PORT_COCKTAIL PORT_START("EF") PORT_BIT( 0x02, IP_ACTIVE_HIGH, IPT_SERVICE ) PORT_WRITE_LINE_DEVICE_MEMBER("cdp1802", FUNC(cosmac_device::ef3_w)) //ic17 - cpu -- cgit v1.2.3