diff options
| author | 2025-01-28 03:52:30 +1100 | |
|---|---|---|
| committer | 2025-01-28 03:52:30 +1100 | |
| commit | 9fa84136d656f405bea1622b1030c6011cd77c69 (patch) | |
| tree | ee4f747318dd181fb6585d8c4721529114d3444c | |
| parent | 131f4bbb5e85914f56b6df5d078a15c06b6767c8 (diff) | |
seta/seta.cpp: Fixed undocumented Dragon Unit DIP switch settings.
| -rw-r--r-- | src/mame/seta/seta.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/seta/seta.cpp b/src/mame/seta/seta.cpp index 51859e7022c..cc109a38452 100644 --- a/src/mame/seta/seta.cpp +++ b/src/mame/seta/seta.cpp @@ -4483,9 +4483,9 @@ static INPUT_PORTS_START( drgnunit ) PORT_DIPSETTING( 0x0030, "3" ) PORT_DIPSETTING( 0x0020, "5" ) PORT_DIPUNUSED_DIPLOC( 0x0040, 0x0040, "SW1:7" ) // Labeled "Don't Touch" in manual - PORT_DIPNAME( 0x0080, 0x0080, "Timer" ) PORT_DIPLOCATION("SW1:8") // Labeled "Don't Touch" in manual but it seems to work fine - PORT_DIPSETTING( 0x0080, "110" ) - PORT_DIPSETTING( 0x0000, "130" ) + PORT_DIPNAME( 0x0080, 0x0080, "Stage Time" ) PORT_DIPLOCATION("SW1:8") // Labeled "Don't Touch" in manual but it seems to work fine + PORT_DIPSETTING( 0x0080, DEF_STR( Normal ) ) + PORT_DIPSETTING( 0x0000, "Extra 20s" ) PORT_DIPUNUSED_DIPLOC( 0x0100, 0x0100, "SW2:1" ) // Labeled "Don't Touch" in manual PORT_DIPNAME( 0x0200, 0x0200, DEF_STR( Flip_Screen ) ) PORT_DIPLOCATION("SW2:2") |
