From 1096780358579bfcc74fa9595a7ab469d46bda1f Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Fri, 14 Aug 2020 13:31:58 +1000 Subject: [PATCH] seta.cpp: Improve madshark DIP switch description. [cam900] The DIP switch doesn't change any regional licensing warnings or messages, all it does is change select between English and traditional Chinese title. It's better to explicitly document what the switch does. --- src/mame/drivers/seta.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/seta.cpp b/src/mame/drivers/seta.cpp index cd6205593f5..f1f747d0fd8 100644 --- a/src/mame/drivers/seta.cpp +++ b/src/mame/drivers/seta.cpp @@ -5219,9 +5219,9 @@ static INPUT_PORTS_START( madshark ) PORT_DIPNAME( 0x0040, 0x0040, DEF_STR( Unused ) ) PORT_DIPSETTING( 0x0040, DEF_STR( Off ) ) PORT_DIPSETTING( 0x0000, DEF_STR( On ) ) - PORT_DIPNAME( 0x0080, 0x0000, "Country" ) - PORT_DIPSETTING( 0x0080, DEF_STR( Japan ) ) - PORT_DIPSETTING( 0x0000, DEF_STR( World ) ) + PORT_DIPNAME( 0x0080, 0x0000, "Title Language" ) + PORT_DIPSETTING( 0x0080, "English" ) + PORT_DIPSETTING( 0x0000, "Traditional Chinese" ) PORT_START("DSW") //2 DSWs PORT_DIPNAME( 0x0001, 0x0001, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW2:1")