summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Ivan Vangelista <mesgnet@yahoo.it>2020-11-26 22:42:24 +0100
committer Ivan Vangelista <mesgnet@yahoo.it>2020-11-26 22:42:24 +0100
commit3bd0ccb3cb4062a31f08f6cd1580eb67b8555805 (patch)
tree7d100227f114a4b0691df887640aa8731331c2a0
parenta234da0b4602cbae5b3a9e194d7b74750b011e73 (diff)
m10.cpp: fix compile on some compilers
-rw-r--r--src/mame/drivers/m10.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/m10.cpp b/src/mame/drivers/m10.cpp
index 564bce40d46..05b90831b70 100644
--- a/src/mame/drivers/m10.cpp
+++ b/src/mame/drivers/m10.cpp
@@ -162,7 +162,7 @@ void m1x_state::palette(palette_device &palette) const
void m1x_state::machine_start()
{
- m_interrupt_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(interrupt_callback), this));
+ m_interrupt_timer = machine().scheduler().timer_alloc(timer_expired_delegate(FUNC(m1x_state::interrupt_callback), this));
save_item(NAME(m_flip));
save_item(NAME(m_last));