summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/wpc_an.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/drivers/wpc_an.cpp
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/drivers/wpc_an.cpp')
-rw-r--r--src/mame/drivers/wpc_an.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/wpc_an.cpp b/src/mame/drivers/wpc_an.cpp
index 103d24a48d0..f4eaa2bb492 100644
--- a/src/mame/drivers/wpc_an.cpp
+++ b/src/mame/drivers/wpc_an.cpp
@@ -114,7 +114,7 @@ private:
// driver_device overrides
virtual void machine_reset() override;
virtual void machine_start() override { m_digits.resolve(); }
- virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override;
+ virtual void device_timer(emu_timer &timer, device_timer_id id, int param) override;
static const device_timer_id TIMER_VBLANK = 0;
static const device_timer_id TIMER_IRQ = 1;
@@ -276,7 +276,7 @@ static INPUT_PORTS_START( wpc_an )
INPUT_PORTS_END
-void wpc_an_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void wpc_an_state::device_timer(emu_timer &timer, device_timer_id id, int param)
{
int x;
switch(id)