summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/s8a.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/s8a.cpp
parentba918b59faad5244d87078ab3b955f64fd803c4d (diff)
Remove void *ptr parameter from emu_timer, timer_device and all related callbacks
Diffstat (limited to 'src/mame/drivers/s8a.cpp')
-rw-r--r--src/mame/drivers/s8a.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/s8a.cpp b/src/mame/drivers/s8a.cpp
index 4695344d5be..b26f34f465f 100644
--- a/src/mame/drivers/s8a.cpp
+++ b/src/mame/drivers/s8a.cpp
@@ -64,7 +64,7 @@ public:
protected:
virtual void machine_start() override;
virtual void machine_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;
private:
void dig0_w(u8 data);
@@ -234,7 +234,7 @@ WRITE_LINE_MEMBER( s8a_state::pia_irq )
}
}
-void s8a_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void s8a_state::device_timer(emu_timer &timer, device_timer_id id, int param)
{
switch(id)
{
separate device AJR2016-04-301-0/+8 * reverting: Miodrag Milanovic2016-01-201-4/+4 * As per whatsnew_096.txt Aaron Giles rewrote driver (nw) Miodrag Milanovic2016-01-191-2/+2 * tags are now strings (nw) Miodrag Milanovic2016-01-161-4/+4 * some handmade changes (nw) Miodrag Milanovic2015-12-211-1/+1 * removed auto_bitmap_ind*_alloc and auto_bitmap_rgb32_alloc and replaced with ... Miodrag Milanovic2015-12-171-1/+1 * We cannot relicense files for which we have not yet received responses (nw) balr0g2015-05-281-1/+1 * Updates and fixes for places where we have major contributors decision (nw) Miodrag Milanovic2015-05-261-1/+1 * Sync other dirs with main driver license for MAME (nw) Miodrag Milanovic2015-05-131-1/+1 * Added dummy license headers for MAME part (nw) Miodrag Milanovic2015-05-071-0/+2 * williams.c: convert defender hardware games to bankdev (nw) Alex W. Jackson2014-05-041-4/+4 * williams.c: convert williams2 hardware games to bankdev [Alex Jackson] Alex W. Jackson2014-05-031-2/+3 * williams.c: move williams2-specific stuff into subclass (nw) Alex W. Jackson2014-05-031-45/+56 * williams.c: move blaster-specific stuff into subclass (nw) Alex W. Jackson2014-05-031-24/+37 * williams.c: fix generic_paletteram regression (nw) Alex W. Jackson2014-05-021-2/+3 * Moved m_generic_paletteram_* into drivers/device state objects so they are no... Miodrag Milanovic2014-04-231-1/+3 * Moved optional_device<screen_device> m_screen and optional_device<palette_dev... Miodrag Milanovic2014-03-051-1/+5 * moved optional_device<gfxdecode_device> to specific drivers state classes (nw) Miodrag Milanovic2014-02-171-1/+3 * Converted PIA6821 to DEVCB2 [smf] smf-2014-01-061-35/+4 * Improved Williams blitter logic and timing to match tests run on real hardwar... smf-2013-07-061-1/+14 * various cpu lookup cleanup (nw) Miodrag Milanovic2013-04-151-1/+3 * changed machine().device("soundcpu") with m_soundcpu (nw) Miodrag Milanovic2013-04-111-1/+3 * added m_maincpu to the rest of drivers in mame (nw) Miodrag Milanovic2013-04-101-2/+3 * Cleanups and version bumpmame0148u3 Miodrag Milanovic2013-04-091-1/+1 * device callback handler cleanup (nw) Miodrag Milanovic2013-04-011-0/+10 * Modernization of drivers part 21 (no whatsnew) Miodrag Milanovic2013-02-131-5/+7 * modernized reset of pre/postload calls, just few legacy left (no whatsnew) Miodrag Milanovic2013-02-011-0/+2 * Cleanups and version bumpmame0148 Miodrag Milanovic2013-01-111-8/+7 * Replace some *_DEVICE_HANDLER with _MEMBER calls (no whatsnew) Miodrag Milanovic2012-09-271-0/+13 * TIMER_CALLBACK_DEVICE_MEMBER modernization part 1 (no whatsnew) Miodrag Milanovic2012-09-251-6/+4 * Introducing TIMER_CALLBACK_MEMBER and modernization part 1 (no whatsnew) Miodrag Milanovic2012-09-241-1/+6 * manual cleanup of mame and mess includes (no whatsnew) Miodrag Milanovic2012-09-181-27/+0 * Modernized screen update calls (no whatsnew)