summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Angelo Salese <angelosa@users.noreply.github.com>2017-02-21 06:10:03 +0100
committer GitHub <noreply@github.com>2017-02-21 06:10:03 +0100
commitba8bc89a89927669e36e822ba4e5a7740a29fe2d (patch)
treefbc15650e889639d07399c5208647c8a0b7382fd
parent363a855df7af7f43ae7e53b27367b13f911f161d (diff)
Whatever is the default it surely isn't super-easy (nw)
-rw-r--r--src/mame/drivers/ertictac.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mame/drivers/ertictac.cpp b/src/mame/drivers/ertictac.cpp
index 2d71557c854..416f2ce0d16 100644
--- a/src/mame/drivers/ertictac.cpp
+++ b/src/mame/drivers/ertictac.cpp
@@ -154,6 +154,7 @@ static INPUT_PORTS_START( poizone )
PORT_BIT( 0x0001, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(1)
PORT_BIT( 0x0004, IP_ACTIVE_LOW, IPT_BUTTON2 ) PORT_PLAYER(2)
+ // TODO: default settings
PORT_MODIFY("DSW1")
PORT_DIPUNKNOWN_DIPLOC( 0x02, 0x02, "DSW1:3" )
PORT_DIPNAME( 0x30, 0x40, "Coinage 1" ) PORT_DIPLOCATION("DSW1:5,6")
@@ -171,7 +172,7 @@ static INPUT_PORTS_START( poizone )
PORT_DIPNAME( 0x01, 0x01, "Setting 1" ) PORT_DIPLOCATION("DSW2:2")
PORT_DIPSETTING( 0x01, "Manual" )
PORT_DIPSETTING( 0x00, "Automatic" )
- PORT_DIPNAME( 0x1A, 0x00, "Setting 2" ) PORT_DIPLOCATION("DSW2:3,4,5")
+ PORT_DIPNAME( 0x1A, 0x1A, "Setting 2" ) PORT_DIPLOCATION("DSW2:3,4,5")
PORT_DIPSETTING( 0x00, "Extremely Easy - 2:00") PORT_CONDITION("DSW2", 0x01, EQUALS, 0x00)
PORT_DIPSETTING( 0x02, "Very Easy - 1:30") PORT_CONDITION("DSW2", 0x01, EQUALS, 0x00)
PORT_DIPSETTING( 0x08, "Easy - 2:00") PORT_CONDITION("DSW2", 0x01, EQUALS, 0x00)