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.
This commit is contained in:
987123879113 2024-04-15 01:08:15 +09:00 committed by GitHub
parent 330964ea49
commit cbfcf175b6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)