summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/namco54.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/namco54.c')
-rw-r--r--src/mame/audio/namco54.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/audio/namco54.c b/src/mame/audio/namco54.c
index 5a4dacf4dc2..2dbf4f80ccb 100644
--- a/src/mame/audio/namco54.c
+++ b/src/mame/audio/namco54.c
@@ -119,7 +119,7 @@ void namco_54xx_write(UINT8 data)
if (cpunum == -1)
return;
- timer_call_after_resynch(data, namco_54xx_latch_callback);
+ timer_call_after_resynch(NULL, data, namco_54xx_latch_callback);
cpunum_set_input_line(cpunum, 0, ASSERT_LINE);
@@ -128,5 +128,5 @@ void namco_54xx_write(UINT8 data)
// The input clock to the 06XX interface chip is 64H, that is
// 18432000/6/64 = 48kHz, so it makes sense for the irq line to be
// asserted for one clock cycle ~= 21us.
- timer_set(ATTOTIME_IN_USEC(21), cpunum, namco_54xx_irq_clear);
+ timer_set(ATTOTIME_IN_USEC(21), NULL, cpunum, namco_54xx_irq_clear);
}