summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/moo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/moo.c')
-rw-r--r--src/mame/drivers/moo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/moo.c b/src/mame/drivers/moo.c
index 3b963cd036d..2e0ee8bd8cf 100644
--- a/src/mame/drivers/moo.c
+++ b/src/mame/drivers/moo.c
@@ -178,7 +178,7 @@ static INTERRUPT_GEN(moo_interrupt)
moo_objdma(game_type);
// schedule DMA end interrupt (delay shortened to catch up with V-blank)
- timer_set(ATTOTIME_IN_USEC(MOO_DMADELAY), 0, dmaend_callback);
+ timer_set(ATTOTIME_IN_USEC(MOO_DMADELAY), NULL, 0, dmaend_callback);
}
// trigger V-blank interrupt
@@ -191,7 +191,7 @@ static INTERRUPT_GEN(moobl_interrupt)
moo_objdma(game_type);
// schedule DMA end interrupt (delay shortened to catch up with V-blank)
- timer_set(ATTOTIME_IN_USEC(MOO_DMADELAY), 0, dmaend_callback);
+ timer_set(ATTOTIME_IN_USEC(MOO_DMADELAY), NULL, 0, dmaend_callback);
// trigger V-blank interrupt
cpunum_set_input_line(0, 5, HOLD_LINE);