summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/notetaker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/notetaker.cpp')
-rw-r--r--src/mame/drivers/notetaker.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/notetaker.cpp b/src/mame/drivers/notetaker.cpp
index 68598ce5146..e5356d7340d 100644
--- a/src/mame/drivers/notetaker.cpp
+++ b/src/mame/drivers/notetaker.cpp
@@ -243,15 +243,15 @@ private:
void ep_io(address_map &map);
void ep_mem(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;
};
-void notetaker_state::device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr)
+void notetaker_state::device_timer(emu_timer &timer, device_timer_id id, int param)
{
switch (id)
{
case TIMER_FIFOCLK:
- timer_fifoclk(ptr, param);
+ timer_fifoclk(param);
break;
default:
throw emu_fatalerror("Unknown id in notetaker_state::device_timer");