From ee597f5f23a63c52b914c8479771932278f3db52 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Wed, 14 Dec 2022 19:19:55 +0100 Subject: [PATCH] konami/crimfght.cpp: fix lives default dip --- src/mame/konami/crimfght.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mame/konami/crimfght.cpp b/src/mame/konami/crimfght.cpp index 066171d0d88..863977092eb 100644 --- a/src/mame/konami/crimfght.cpp +++ b/src/mame/konami/crimfght.cpp @@ -158,8 +158,9 @@ static INPUT_PORTS_START( crimfght ) PORT_DIPSETTING( 0x90, DEF_STR( 1C_7C )) PORT_DIPSETTING( 0x00, DEF_STR( Unused )) + // defaults confirmed from World manual PORT_START("DSW2") - PORT_DIPNAME( 0x03, 0x02, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW2:1,2") + PORT_DIPNAME( 0x03, 0x01, DEF_STR( Lives ) ) PORT_DIPLOCATION("SW2:1,2") PORT_DIPSETTING( 0x03, "1" ) PORT_DIPSETTING( 0x02, "2" ) PORT_DIPSETTING( 0x01, "3" )