diff options
author | 2022-01-26 08:47:06 -0500 | |
---|---|---|
committer | 2022-01-26 08:56:03 -0500 | |
commit | ca79d71af4bca7c1b8acc1df9e5dbb5b987d1542 (patch) | |
tree | 42994b1dd615273baa3e656b569ccd478270aff3 /src/mame/drivers/intv.cpp | |
parent | ba918b59faad5244d87078ab3b955f64fd803c4d (diff) |
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/drivers/intv.cpp')
-rw-r--r-- | src/mame/drivers/intv.cpp | 8 |
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"); |