summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/model2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/model2.cpp')
-rw-r--r--src/mame/drivers/model2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/model2.cpp b/src/mame/drivers/model2.cpp
index 87168015871..b7c3ad3230c 100644
--- a/src/mame/drivers/model2.cpp
+++ b/src/mame/drivers/model2.cpp
@@ -261,11 +261,11 @@ uint32_t model2_state::copro_fifoout_pop(address_space &space,uint32_t offset, u
{
if (m_copro_fifoout_num == COPRO_FIFOOUT_SIZE)
{
- space.machine().device<adsp21062_device>("dsp")->set_flag_input(1, ASSERT_LINE);
+ machine().device<adsp21062_device>("dsp")->set_flag_input(1, ASSERT_LINE);
}
else
{
- space.machine().device<adsp21062_device>("dsp")->set_flag_input(1, CLEAR_LINE);
+ machine().device<adsp21062_device>("dsp")->set_flag_input(1, CLEAR_LINE);
}
}