From 73fada10d6170f08885f3bc1b3c521f013b69bbe Mon Sep 17 00:00:00 2001 From: AJR Date: Wed, 20 Nov 2024 22:35:11 -0500 Subject: sc3000: Make "Reset" a non-keyboard-type input to prevent MAME from making a separate one-button keyboard out of it --- src/mame/sega/sg1000.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mame/sega/sg1000.cpp b/src/mame/sega/sg1000.cpp index 1f0461e7146..df6293cd0c5 100644 --- a/src/mame/sega/sg1000.cpp +++ b/src/mame/sega/sg1000.cpp @@ -479,7 +479,7 @@ static INPUT_PORTS_START( sc3000 ) // keyboard keys are added by the embedded sk1100 device PORT_START("NMI") - PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_KEYBOARD ) PORT_NAME("RESET") PORT_CODE(KEYCODE_F10) PORT_CHANGED_MEMBER(DEVICE_SELF, FUNC(sg1000_state::trigger_nmi), 0) + PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_OTHER ) PORT_NAME("RESET") PORT_CODE(KEYCODE_F10) PORT_CHANGED_MEMBER(DEVICE_SELF, FUNC(sg1000_state::trigger_nmi), 0) INPUT_PORTS_END /*------------------------------------------------- -- cgit v1.2.3