summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/intv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/intv.cpp')
-rw-r--r--src/mame/drivers/intv.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/intv.cpp b/src/mame/drivers/intv.cpp
index e5bdab00fcb..89f299b3666 100644
--- a/src/mame/drivers/intv.cpp
+++ b/src/mame/drivers/intv.cpp
@@ -424,18 +424,18 @@ void intv_state::intvkbd2_mem(address_map &map)
map(0xe000, 0xffff).r(FUNC(intv_state::intvkb_iocart_r));
}
-void intv_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void intv_state::device_timer(emu_timer &timer, device_timer_id id, int param)
{
switch (id)
{
case TIMER_INTV_INTERRUPT2_COMPLETE:
- intv_interrupt2_complete(ptr, param);
+ intv_interrupt2_complete(param);
break;
case TIMER_INTV_INTERRUPT_COMPLETE:
- intv_interrupt_complete(ptr, param);
+ intv_interrupt_complete(param);
break;
case TIMER_INTV_BTB_FILL:
- intv_btb_fill(ptr, param);
+ intv_btb_fill(param);
break;
default:
throw emu_fatalerror("Unknown id in intv_state::device_timer");