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/drivers/gpworld.cpp | |
parent | ba918b59faad5244d87078ab3b955f64fd803c4d (diff) |
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/drivers/gpworld.cpp')
-rw-r--r-- | src/mame/drivers/gpworld.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/gpworld.cpp b/src/mame/drivers/gpworld.cpp index d9d008b31b7..654389e5853 100644 --- a/src/mame/drivers/gpworld.cpp +++ b/src/mame/drivers/gpworld.cpp @@ -100,7 +100,7 @@ private: void mainmem(address_map &map); void mainport(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; }; @@ -454,7 +454,7 @@ static INPUT_PORTS_START( gpworld ) PORT_DIPSETTING( 0x00, DEF_STR( On ) ) INPUT_PORTS_END -void gpworld_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) +void gpworld_state::device_timer(emu_timer &timer, device_timer_id id, int param) { switch (id) { |