summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/suprnova.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/suprnova.c')
-rw-r--r--src/mame/drivers/suprnova.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/suprnova.c b/src/mame/drivers/suprnova.c
index 1b4ce00c8bf..23c6789088f 100644
--- a/src/mame/drivers/suprnova.c
+++ b/src/mame/drivers/suprnova.c
@@ -454,9 +454,9 @@ static TIMER_CALLBACK( interrupt_callback )
static MACHINE_RESET(skns)
{
- timer_pulse(ATTOTIME_IN_MSEC(2), 15, interrupt_callback);
- timer_pulse(ATTOTIME_IN_MSEC(8), 11, interrupt_callback);
- timer_pulse(ATTOTIME_IN_CYCLES(1824, 0), 9, interrupt_callback);
+ timer_pulse(ATTOTIME_IN_MSEC(2), NULL, 15, interrupt_callback);
+ timer_pulse(ATTOTIME_IN_MSEC(8), NULL, 11, interrupt_callback);
+ timer_pulse(ATTOTIME_IN_CYCLES(1824, 0), NULL, 9, interrupt_callback);
memory_set_bankptr(1,memory_region(REGION_USER1));
}