summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/maxaflex.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-08-27 05:47:36 +1000
committer Vas Crabb <vas@vastheman.com>2016-08-27 05:47:36 +1000
commitea3ff966732b30c0350022e64005a4c3cfa232ed (patch)
treef7dcccdcf089555caa4f38d5ac174a075bc95d5d /src/mame/drivers/maxaflex.cpp
parentdb48502ecbf882a0d4558d440a16803b1365f17d (diff)
More prep for removing pointer/reference duality (nw)
Diffstat (limited to 'src/mame/drivers/maxaflex.cpp')
-rw-r--r--src/mame/drivers/maxaflex.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/maxaflex.cpp b/src/mame/drivers/maxaflex.cpp
index 0514c9b45d9..d50793e9377 100644
--- a/src/mame/drivers/maxaflex.cpp
+++ b/src/mame/drivers/maxaflex.cpp
@@ -228,7 +228,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(maxaflex_state::mcu_timer_proc)
if ( (m_tcr & 0x40) == 0 )
{
//timer interrupt!
- generic_pulse_irq_line(m_mcu, M68705_INT_TIMER, 1);
+ generic_pulse_irq_line(*m_mcu, M68705_INT_TIMER, 1);
}
}
}