diff options
author | 2022-01-11 12:46:04 +0000 | |
---|---|---|
committer | 2022-01-11 07:46:04 -0500 | |
commit | 7b4c7fe385c7b5c217bc51c26fe7029bb7ce8b57 (patch) | |
tree | 7ff48c3b6076c535eb2749f03caeb43df41fe38c | |
parent | 4ae94c4b89f591e115a52cb52d2f5daad066e1fa (diff) |
segas32.cpp: Third DIP switch freezes game on slipstrm, slipstrmh (MT08164) (#9128)
-rw-r--r-- | src/mame/drivers/segas32.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mame/drivers/segas32.cpp b/src/mame/drivers/segas32.cpp index ff5be89b21b..ab69c80ef79 100644 --- a/src/mame/drivers/segas32.cpp +++ b/src/mame/drivers/segas32.cpp @@ -2070,6 +2070,11 @@ static INPUT_PORTS_START( slipstrm ) PORT_MODIFY("mainpcb:SERVICE12_A") PORT_BIT( 0x20, IP_ACTIVE_LOW, IPT_UNUSED ) + PORT_MODIFY("mainpcb:SERVICE34_A") + PORT_DIPNAME( 0x04, 0x04, "Freeze Frame" ) PORT_DIPLOCATION("SW1:3") // Undocumented feature? + PORT_DIPSETTING( 0x04, DEF_STR( Off ) ) + PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_START("mainpcb:ANALOG1") PORT_BIT( 0xff, 0x80, IPT_PADDLE ) PORT_SENSITIVITY(30) PORT_KEYDELTA(10) |