summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <salese_corp_ltd@email.it>2017-08-26 06:56:25 +0200
committer angelosa <salese_corp_ltd@email.it>2017-08-26 06:56:25 +0200
commit9d25d12efbb64dca5fa7976227b68bfee6551531 (patch)
tree7909cf0b380955586b5f875302597e22773b57b3
parentf04299ce0bdc1a7455f0c44619afe4c096258076 (diff)
IPT_UNKNOWN doesn't need a // ? near it (nw)
-rw-r--r--src/mame/drivers/40love.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/40love.cpp b/src/mame/drivers/40love.cpp
index a6d2d1b1950..376440c7e8e 100644
--- a/src/mame/drivers/40love.cpp
+++ b/src/mame/drivers/40love.cpp
@@ -605,8 +605,8 @@ static INPUT_PORTS_START( 40love )
PORT_DIPSETTING( 0x80, "2" )
PORT_START("SYSTEM")
- PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNKNOWN ) // ?
- PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNKNOWN ) // ?
+ PORT_BIT( 0x01, IP_ACTIVE_LOW, IPT_UNKNOWN )
+ PORT_BIT( 0x02, IP_ACTIVE_LOW, IPT_UNKNOWN )
PORT_BIT( 0x04, IP_ACTIVE_HIGH,IPT_COIN1 )
PORT_BIT( 0x08, IP_ACTIVE_HIGH,IPT_COIN2 )
PORT_BIT( 0x10, IP_ACTIVE_LOW, IPT_START1 )