summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author briantro <btroha@charter.net>2017-01-02 14:08:06 -0600
committer briantro <btroha@charter.net>2017-01-02 14:08:06 -0600
commit3d59f6fc1b11917f4b5aa4164aae2014e2c0fa22 (patch)
tree672bb67f1ae18b67baf077a60fe74b49002d497d
parentd849eaa005ce8945f38af539b9f29bfb43b57605 (diff)
rohga.cpp: Allow Continue was inverted - Fixed - NW
-rw-r--r--src/mame/drivers/rohga.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/rohga.cpp b/src/mame/drivers/rohga.cpp
index e663dffc7a4..3cb74af0a69 100644
--- a/src/mame/drivers/rohga.cpp
+++ b/src/mame/drivers/rohga.cpp
@@ -730,8 +730,8 @@ static INPUT_PORTS_START( hangzo )
PORT_DIPSETTING( 0x2000, DEF_STR( Off ) )
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
PORT_DIPNAME( 0x4000, 0x4000, DEF_STR( Allow_Continue ) ) PORT_DIPLOCATION("SW2:7")
- PORT_DIPSETTING( 0x4000, DEF_STR( Off ) )
- PORT_DIPSETTING( 0x0000, DEF_STR( On ) )
+ PORT_DIPSETTING( 0x0000, DEF_STR( Off ) )
+ PORT_DIPSETTING( 0x4000, DEF_STR( On ) )
PORT_DIPNAME( 0x8000, 0x0000, DEF_STR( Demo_Sounds ) ) PORT_DIPLOCATION("SW2:8")
PORT_DIPSETTING( 0x8000, DEF_STR( Off ) )
PORT_DIPSETTING( 0x0000, DEF_STR( On ) )