summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/gottlieb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gottlieb.cpp')
-rw-r--r--src/mame/drivers/gottlieb.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/drivers/gottlieb.cpp b/src/mame/drivers/gottlieb.cpp
index 65149c633e9..71688beda09 100644
--- a/src/mame/drivers/gottlieb.cpp
+++ b/src/mame/drivers/gottlieb.cpp
@@ -691,21 +691,21 @@ void gottlieb_state::qbert_knocker(machine_config &config)
*
*************************************/
-void gottlieb_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void gottlieb_state::device_timer(emu_timer &timer, device_timer_id id, int param)
{
switch (id)
{
case TIMER_LASERDISC_PHILIPS:
- laserdisc_philips_callback(ptr, param);
+ laserdisc_philips_callback(param);
break;
case TIMER_LASERDISC_BIT_OFF:
- laserdisc_bit_off_callback(ptr, param);
+ laserdisc_bit_off_callback(param);
break;
case TIMER_LASERDISC_BIT:
- laserdisc_bit_callback(ptr, param);
+ laserdisc_bit_callback(param);
break;
case TIMER_NMI_CLEAR:
- nmi_clear(ptr, param);
+ nmi_clear(param);
break;
default:
throw emu_fatalerror("Unknown id in gottlieb_state::device_timer");