summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2021-09-24 22:51:22 +0200
committer hap <happppp@users.noreply.github.com>2021-09-24 22:51:32 +0200
commit7cc72c16936cc1aaa287db5e5de4b032336045f0 (patch)
tree17cf4e1108f5a03b509579e8551850f00fd3293f
parentcdac9746b4867fcbe02d7d714bfdd54b8ff5aab9 (diff)
polepos2: freeze dipswitch works fine
-rw-r--r--src/mame/drivers/polepos.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/polepos.cpp b/src/mame/drivers/polepos.cpp
index 4cbfd971d98..54f1fc4a36c 100644
--- a/src/mame/drivers/polepos.cpp
+++ b/src/mame/drivers/polepos.cpp
@@ -694,7 +694,7 @@ static INPUT_PORTS_START( polepos2 )
PORT_DIPNAME( 0x02, 0x02, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW1:7")
PORT_DIPSETTING( 0x00, DEF_STR( Off ))
PORT_DIPSETTING( 0x02, DEF_STR( On ) )
- PORT_DIPNAME( 0x01, 0x01, DEF_STR( Unknown ) ) PORT_DIPLOCATION("SW1:8") /* docs say "freeze", but it doesn't seem to work */
+ PORT_DIPNAME( 0x01, 0x01, "Freeze" ) PORT_DIPLOCATION("SW1:8")
PORT_DIPSETTING( 0x01, DEF_STR( Off ))
PORT_DIPSETTING( 0x00, DEF_STR( On ) )
@@ -780,7 +780,7 @@ static INPUT_PORTS_START( polepos2bi )
PORT_DIPNAME( 0x40, 0x00, DEF_STR( Game_Time ) ) PORT_DIPLOCATION("SWB:6")
PORT_DIPSETTING( 0x00, "90 secs." )
PORT_DIPSETTING( 0x40, "120 secs." )
- PORT_DIPNAME( 0x80, 0x00, DEF_STR( Pause ) ) PORT_DIPLOCATION("SWB:8")
+ PORT_DIPNAME( 0x80, 0x00, "Freeze" ) PORT_DIPLOCATION("SWB:8")
PORT_DIPSETTING( 0x00, DEF_STR( Off ))
PORT_DIPSETTING( 0x80, DEF_STR( On ) )
INPUT_PORTS_END