summaryrefslogtreecommitdiffstats
path: root/src/mame/audio/vboy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/vboy.cpp')
-rw-r--r--src/mame/audio/vboy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/vboy.cpp b/src/mame/audio/vboy.cpp
index d7b3f587eed..1b4a32d8185 100644
--- a/src/mame/audio/vboy.cpp
+++ b/src/mame/audio/vboy.cpp
@@ -211,7 +211,7 @@ void vboysnd_device::device_start()
// create the stream
m_stream = stream_alloc(0, 2, rate);
- m_timer = timer_alloc(0, nullptr);
+ m_timer = timer_alloc(0);
m_timer->adjust(attotime::zero, 0, rate ? attotime::from_hz(rate / 4) : attotime::never);
for (int i=0; i<2048; i++)
@@ -259,7 +259,7 @@ void vboysnd_device::device_reset()
// device_timer - called when our device timer expires
//-------------------------------------------------
-void vboysnd_device::device_timer(emu_timer &timer, device_timer_id tid, int param, void *ptr)
+void vboysnd_device::device_timer(emu_timer &timer, device_timer_id tid, int param)
{
m_stream->update();
}