diff options
Diffstat (limited to 'src/mame/drivers/m68705prg.cpp')
-rw-r--r-- | src/mame/drivers/m68705prg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/m68705prg.cpp b/src/mame/drivers/m68705prg.cpp index 5bb9359813c..a7a5df71bf3 100644 --- a/src/mame/drivers/m68705prg.cpp +++ b/src/mame/drivers/m68705prg.cpp @@ -191,15 +191,15 @@ protected: m_mcu->set_input_line(INPUT_LINE_RESET, ASSERT_LINE); } - virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override + virtual void device_timer(emu_timer &timer, device_timer_id id, int param) override { switch (id) { case TIMER_INPUT_POLL: - input_poll_callback(ptr, param); + input_poll_callback(param); break; default: - driver_device::device_timer(timer, id, param, ptr); + driver_device::device_timer(timer, id, param); } } |