From c17a255466284f958d5213cde6b1b98b0c383e8e Mon Sep 17 00:00:00 2001 From: Uncle Petros Date: Tue, 7 Jan 2025 18:52:35 +0100 Subject: [PATCH] misc/4enraya.cpp: Labelled DIP switch on bit 1 (0x02) as unknown. (#13185) Was previously labelled Demo Sounds, but it does not disable sounds in attract mode. --- src/mame/misc/4enraya.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mame/misc/4enraya.cpp b/src/mame/misc/4enraya.cpp index 7db07c243ca..1234011ba04 100644 --- a/src/mame/misc/4enraya.cpp +++ b/src/mame/misc/4enraya.cpp @@ -432,9 +432,7 @@ static INPUT_PORTS_START( 4enraya ) PORT_DIPNAME( 0x01, 0x01, "Speed" ) PORT_DIPLOCATION("SW1:1") PORT_DIPSETTING( 0x01, "Slow" ) PORT_DIPSETTING( 0x00, "Fast" ) - PORT_DIPNAME( 0x02, 0x00, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:2") - PORT_DIPSETTING( 0x02, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) + PORT_DIPUNKNOWN_DIPLOC( 0x02, 0x02, "SW1:2" ) //It was identified with "Demo Sound", but not worked PORT_DIPNAME( 0x04, 0x04, "Pieces" ) PORT_DIPLOCATION("SW1:3") PORT_DIPSETTING( 0x04, "30" ) PORT_DIPSETTING( 0x00, "16" )