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/apollo.cpp | |
parent | ba918b59faad5244d87078ab3b955f64fd803c4d (diff) |
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/machine/apollo.cpp')
-rw-r--r-- | src/mame/machine/apollo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/apollo.cpp b/src/mame/machine/apollo.cpp index d1b21259db1..1b4f63013f1 100644 --- a/src/mame/machine/apollo.cpp +++ b/src/mame/machine/apollo.cpp @@ -1307,10 +1307,10 @@ void apollo_stdio_device::device_reset() } void apollo_stdio_device::device_timer(emu_timer &timer, device_timer_id id, - int param, void *ptr) + int param) { // FIXME? -// device_serial_interface::device_timer(timer, id, param, ptr); +// device_serial_interface::device_timer(timer, id, param); } void apollo_stdio_device::rcv_complete() // Rx completed receiving byte |