diff options
Diffstat (limited to 'src/mame/drivers/fgoal.cpp')
-rw-r--r-- | src/mame/drivers/fgoal.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/fgoal.cpp b/src/mame/drivers/fgoal.cpp index b985bcc6d52..f451e738afd 100644 --- a/src/mame/drivers/fgoal.cpp +++ b/src/mame/drivers/fgoal.cpp @@ -64,12 +64,12 @@ void fgoal_state::fgoal_palette(palette_device &palette) const } -void fgoal_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) +void fgoal_state::device_timer(emu_timer &timer, device_timer_id id, int param) { switch (id) { case TIMER_INTERRUPT: - interrupt_callback(ptr, param); + interrupt_callback(param); break; default: throw emu_fatalerror("Unknown id in fgoal_state::device_timer"); |