summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2021-05-22 23:57:22 +0200
committer hap <happppp@users.noreply.github.com>2021-05-22 23:57:22 +0200
commit97b65aaa0d0fd7ae059be7def1c5e2c38f54e9b0 (patch)
tree632b576b33ea6c652dc73cddb23fa6237f26e58c
parent8dcf8fc0e1a0f3ad94c4d95629b20bbb3594f738 (diff)
itaten: change default difficulty level
-rw-r--r--src/mame/drivers/dacholer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/dacholer.cpp b/src/mame/drivers/dacholer.cpp
index 93fc14317af..455484c29fb 100644
--- a/src/mame/drivers/dacholer.cpp
+++ b/src/mame/drivers/dacholer.cpp
@@ -29,6 +29,7 @@
based on driver from drivers/dacholer.c by Pierpaolo Prazzoli
note:
Sound test does not work.
+
******************************************************************************/
#include "emu.h"
@@ -523,7 +524,7 @@ static INPUT_PORTS_START( itaten )
PORT_BIT( 0xf0, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_START("DSWB")
- PORT_DIPNAME( 0x03, 0x03, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:1,2")
+ PORT_DIPNAME( 0x03, 0x02, DEF_STR( Difficulty ) ) PORT_DIPLOCATION("SW2:1,2")
PORT_DIPSETTING( 0x03, DEF_STR( Easy ) )
PORT_DIPSETTING( 0x02, DEF_STR( Medium ) )
PORT_DIPSETTING( 0x01, DEF_STR( Hard ) )