From cbfcf175b6563afdcb33576f52cfbb9c586ebd71 Mon Sep 17 00:00:00 2001 From: 987123879113 <63495610+987123879113@users.noreply.github.com> Date: Mon, 15 Apr 2024 01:08:15 +0900 Subject: [PATCH] konami/konamigv.cpp: Removed inputs that are not present from Tokimeki Memorial Oshiete Your Heart games. (#12245) These inputs are not physically present and are not displayed in test mode. --- src/mame/konami/konamigv.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/mame/konami/konamigv.cpp b/src/mame/konami/konamigv.cpp index b18b931c2ee..0935ce6c773 100644 --- a/src/mame/konami/konamigv.cpp +++ b/src/mame/konami/konamigv.cpp @@ -1139,9 +1139,16 @@ void tokimeki_state::tokimeki_device_check_w(int state) static INPUT_PORTS_START( tmosh ) PORT_INCLUDE( konamigv ) + PORT_MODIFY("P1") + PORT_BIT( 0xffffc3e0, IP_ACTIVE_LOW, IPT_UNUSED ) + PORT_MODIFY("P2") + PORT_BIT( 0xfffffbff, IP_ACTIVE_LOW, IPT_UNUSED ) PORT_BIT( 0x00000400, IP_ACTIVE_HIGH, IPT_CUSTOM ) PORT_CUSTOM_MEMBER(tokimeki_state, tokimeki_device_check_r) + PORT_MODIFY("P3_P4") + PORT_BIT( 0xffffffff, IP_ACTIVE_LOW, IPT_UNUSED ) + PORT_MODIFY("EEPROMOUT") PORT_BIT( 0x10, IP_ACTIVE_HIGH, IPT_OUTPUT ) PORT_WRITE_LINE_MEMBER(tokimeki_state, tokimeki_device_check_w)