From 9eaa7414e71a2ba6824b4bfbda4e9df94fc62905 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Mon, 30 Jul 2012 18:45:59 +0000 Subject: [PATCH] Defaults to disallow game over, fix it --- src/mame/drivers/cyclemb.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/cyclemb.c b/src/mame/drivers/cyclemb.c index 36a763de88c..e3cae61beb2 100644 --- a/src/mame/drivers/cyclemb.c +++ b/src/mame/drivers/cyclemb.c @@ -685,10 +685,10 @@ static INPUT_PORTS_START( cyclemb ) PORT_DIPNAME( 0x01, 0x00, DEF_STR( Free_Play ) ) PORT_DIPSETTING( 0x01, DEF_STR( Yes ) ) PORT_DIPSETTING( 0x00, DEF_STR( No ) ) - PORT_DIPNAME( 0x02, 0x02, DEF_STR( Unknown ) ) - PORT_DIPSETTING( 0x02, DEF_STR( Off ) ) - PORT_DIPSETTING( 0x00, DEF_STR( On ) ) - PORT_DIPNAME( 0x0c, 0x04, "Stage Start" ) + PORT_DIPNAME( 0x02, 0x00, "Disallow Game Over (Cheat)" ) + PORT_DIPSETTING( 0x02, DEF_STR( Yes ) ) + PORT_DIPSETTING( 0x00, DEF_STR( No ) ) + PORT_DIPNAME( 0x0c, 0x00, "Stage Start" ) PORT_DIPSETTING( 0x00, "Tutorial" ) PORT_DIPSETTING( 0x04, "1" ) PORT_DIPSETTING( 0x08, "2" )