summaryrefslogtreecommitdiffstats
path: root/src/mame/machine/wpc_lamp.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2022-01-26 08:47:06 -0500
committer AJR <ajrhacker@users.noreply.github.com>2022-01-26 08:56:03 -0500
commitca79d71af4bca7c1b8acc1df9e5dbb5b987d1542 (patch)
tree42994b1dd615273baa3e656b569ccd478270aff3 /src/mame/machine/wpc_lamp.cpp
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/machine/wpc_lamp.cpp')
-rw-r--r--src/mame/machine/wpc_lamp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/wpc_lamp.cpp b/src/mame/machine/wpc_lamp.cpp
index feee50cc926..8aaa2455285 100644
--- a/src/mame/machine/wpc_lamp.cpp
+++ b/src/mame/machine/wpc_lamp.cpp
@@ -57,7 +57,7 @@ void wpc_lamp_device::device_reset()
timer->adjust(attotime::from_hz(60), 0, attotime::from_hz(60));
}
-void wpc_lamp_device::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void wpc_lamp_device::device_timer(emu_timer &timer, device_timer_id id, int param)
{
for(int i=0; i<64; i++) {
uint8_t s = state[i];