summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/techno.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/techno.cpp
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/drivers/techno.cpp')
-rw-r--r--src/mame/drivers/techno.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/techno.cpp b/src/mame/drivers/techno.cpp
index 4ff80f55fdf..f6af05fbd3e 100644
--- a/src/mame/drivers/techno.cpp
+++ b/src/mame/drivers/techno.cpp
@@ -80,7 +80,7 @@ private:
void audio_map(address_map &map);
void cpu_space_map(address_map &map);
- 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;
virtual void machine_start() override;
virtual void machine_reset() override;
@@ -314,7 +314,7 @@ static INPUT_PORTS_START( techno )
PORT_BIT( 0x80, IP_ACTIVE_HIGH, IPT_KEYPAD ) PORT_CODE(KEYCODE_BACKSPACE) PORT_NAME("Fix top left target middle")
INPUT_PORTS_END
-void techno_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void techno_state::device_timer(emu_timer &timer, device_timer_id id, int param)
{
if (id == IRQ_ADVANCE_TIMER)
{