diff options
Diffstat (limited to 'src/mame/misc/marywu.cpp')
| -rw-r--r-- | src/mame/misc/marywu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/misc/marywu.cpp b/src/mame/misc/marywu.cpp index a27b3436236..e155735fca7 100644 --- a/src/mame/misc/marywu.cpp +++ b/src/mame/misc/marywu.cpp @@ -101,9 +101,9 @@ static INPUT_PORTS_START( marywu ) PORT_BIT(0x08, IP_ACTIVE_LOW, IPT_BUTTON4) // K3 PORT_BIT(0xf0, IP_ACTIVE_LOW, IPT_UNUSED ) - PORT_START("P1") - PORT_BIT(0x40, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_NAME("P1.6") PORT_CODE(KEYCODE_C) // If press or IP_ACTIVE_LOW Will cause Error 30 if press - PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("P1.7") PORT_CODE(KEYCODE_V) // If press during startup, it will cause error 76. + PORT_START("P1") + PORT_BIT(0x40, IP_ACTIVE_HIGH, IPT_KEYPAD) PORT_NAME("P1.6") PORT_CODE(KEYCODE_C) // If press or IP_ACTIVE_LOW Will cause Error 30 if press + PORT_BIT(0x80, IP_ACTIVE_LOW, IPT_KEYPAD) PORT_NAME("P1.7") PORT_CODE(KEYCODE_V) // If press during startup, it will cause error 76. INPUT_PORTS_END void marywu_state::ay1_port_a_w(uint8_t data) |
