From 061ccc826dc2274f3e7df4e391d36e9b262a66f2 Mon Sep 17 00:00:00 2001 From: flama12333 <143599905+flama12333@users.noreply.github.com> Date: Sun, 28 Sep 2025 17:58:44 -0500 Subject: [PATCH] Fix typo marywu.cpp --- src/mame/misc/marywu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/misc/marywu.cpp b/src/mame/misc/marywu.cpp index 26d26ce275ed9..38fec43131766 100644 --- a/src/mame/misc/marywu.cpp +++ b/src/mame/misc/marywu.cpp @@ -75,7 +75,7 @@ static INPUT_PORTS_START( marywu ) PORT_BIT(0x01, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_CODE(KEYCODE_I) PORT_START("KEYS2") - PORT_BIT(0x80, IP_ACTIVE_HIGH, IPT_COIN1) PORT_IMPULSE(01) PORT_CODE(KEYCODE_A) // If press or IP_ACTIVE_LOW or press will cause error 30. + PORT_BIT(0x80, IP_ACTIVE_HIGH, IPT_COIN1) PORT_IMPULSE(01) PORT_CODE(KEYCODE_A) // If press or IP_ACTIVE_LOW will cause error 30. PORT_BIT(0x40, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_CODE(KEYCODE_S) PORT_BIT(0x20, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_CODE(KEYCODE_D) PORT_BIT(0x10, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_CODE(KEYCODE_F)