summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pipedrm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pipedrm.c')
-rw-r--r--src/mame/drivers/pipedrm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pipedrm.c b/src/mame/drivers/pipedrm.c
index df63e798448..ab24a3c3f1f 100644
--- a/src/mame/drivers/pipedrm.c
+++ b/src/mame/drivers/pipedrm.c
@@ -188,13 +188,13 @@ static TIMER_CALLBACK( delayed_command_w )
static WRITE8_HANDLER( sound_command_w )
{
- timer_call_after_resynch(data | 0x100, delayed_command_w);
+ timer_call_after_resynch(NULL, data | 0x100, delayed_command_w);
}
static WRITE8_HANDLER( sound_command_nonmi_w )
{
- timer_call_after_resynch(data, delayed_command_w);
+ timer_call_after_resynch(NULL, data, delayed_command_w);
}