summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/ddenlovr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ddenlovr.cpp')
-rw-r--r--src/mame/drivers/ddenlovr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/ddenlovr.cpp b/src/mame/drivers/ddenlovr.cpp
index 1129d1aef94..98ed50d17de 100644
--- a/src/mame/drivers/ddenlovr.cpp
+++ b/src/mame/drivers/ddenlovr.cpp
@@ -1806,8 +1806,8 @@ READ8_MEMBER(ddenlovr_state::quiz365_input_r )
if (!BIT(m_dsw_sel, 0)) return ioport("DSW1")->read();
if (!BIT(m_dsw_sel, 1)) return ioport("DSW2")->read();
if (!BIT(m_dsw_sel, 2)) return ioport("DSW3")->read();
- if (!BIT(m_dsw_sel, 3)) return 0xff;//space.machine().rand();
- if (!BIT(m_dsw_sel, 4)) return 0xff;//space.machine().rand();
+ if (!BIT(m_dsw_sel, 3)) return 0xff;//machine().rand();
+ if (!BIT(m_dsw_sel, 4)) return 0xff;//machine().rand();
return 0xff;
}
@@ -3159,7 +3159,7 @@ READ8_MEMBER(ddenlovr_state::hginga_dsw_r )
if (!BIT(m_dsw_sel, 3)) return ioport("DSW1")->read();
if (!BIT(m_dsw_sel, 4)) return ioport("DSW5")->read();
- logerror("%s: warning, unknown bits read, ddenlovr_select = %02x\n", space.machine().describe_context(), m_dsw_sel);
+ logerror("%s: warning, unknown bits read, ddenlovr_select = %02x\n", machine().describe_context(), m_dsw_sel);
return 0xff;
}
@@ -4054,7 +4054,7 @@ READ8_MEMBER(ddenlovr_state::seljan2_dsw_r )
if (!BIT(m_dsw_sel, 3)) return ioport("DSW4")->read();
if (!BIT(m_dsw_sel, 4)) return ioport("DSWTOP")->read();
- logerror("%s: warning, unknown bits read, ddenlovr_select = %02x\n", space.machine().describe_context(), m_dsw_sel);
+ logerror("%s: warning, unknown bits read, ddenlovr_select = %02x\n", machine().describe_context(), m_dsw_sel);
return 0xff;
}