summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/pwrview.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/pwrview.cpp
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/drivers/pwrview.cpp')
-rw-r--r--src/mame/drivers/pwrview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pwrview.cpp b/src/mame/drivers/pwrview.cpp
index fe1830656fe..604f2336bb9 100644
--- a/src/mame/drivers/pwrview.cpp
+++ b/src/mame/drivers/pwrview.cpp
@@ -67,7 +67,7 @@ private:
virtual void device_start() override;
virtual void device_reset() override;
- 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;
required_device<i80186_cpu_device> m_maincpu;
required_device<pit8253_device> m_pit;
@@ -110,7 +110,7 @@ void pwrview_state::device_reset()
m_tmrkbd->adjust(attotime::from_hz(9600*16), 0, attotime::from_hz(9600*16)); // kbd baud is guess
}
-void pwrview_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void pwrview_state::device_timer(emu_timer &timer, device_timer_id id, int param)
{
switch(id)
{