mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
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:
parent
330964ea49
commit
cbfcf175b6
1 changed files with 7 additions and 0 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue