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/machine/cuda.cpp | |
parent | ba918b59faad5244d87078ab3b955f64fd803c4d (diff) |
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/machine/cuda.cpp')
-rw-r--r-- | src/mame/machine/cuda.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/machine/cuda.cpp b/src/mame/machine/cuda.cpp index 52194dbee55..83f8f126494 100644 --- a/src/mame/machine/cuda.cpp +++ b/src/mame/machine/cuda.cpp @@ -395,8 +395,8 @@ void cuda_device::device_start() write_via_clock.resolve_safe(); write_via_data.resolve_safe(); - m_timer = timer_alloc(0, nullptr); - m_prog_timer = timer_alloc(1, nullptr); + m_timer = timer_alloc(0); + m_prog_timer = timer_alloc(1); save_item(NAME(ddrs[0])); save_item(NAME(ddrs[1])); save_item(NAME(ddrs[2])); @@ -457,7 +457,7 @@ void cuda_device::device_reset() last_adb = 0; } -void cuda_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) +void cuda_device::device_timer(emu_timer &timer, device_timer_id id, int param) { if (id == 0) { |