summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/nb1413m3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/nb1413m3.c')
-rw-r--r--src/mame/machine/nb1413m3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/nb1413m3.c b/src/mame/machine/nb1413m3.c
index 1b45a3ab7ba..a4c0909eb4e 100644
--- a/src/mame/machine/nb1413m3.c
+++ b/src/mame/machine/nb1413m3.c
@@ -44,7 +44,7 @@ static int nb1413m3_outcoin_flag;
#define NB1413M3_TIMER_BASE 20000000
static TIMER_CALLBACK( nb1413m3_timer_callback )
{
- timer_set(attotime_mul(ATTOTIME_IN_HZ(NB1413M3_TIMER_BASE), 256), 0, nb1413m3_timer_callback);
+ timer_set(attotime_mul(ATTOTIME_IN_HZ(NB1413M3_TIMER_BASE), 256), NULL, 0, nb1413m3_timer_callback);
nb1413m3_74ls193_counter++;
nb1413m3_74ls193_counter &= 0x0f;
@@ -141,7 +141,7 @@ MACHINE_RESET( nb1413m3 )
nb1413m3_74ls193_counter = 0;
- timer_call_after_resynch(0, nb1413m3_timer_callback);
+ timer_call_after_resynch(NULL, 0, nb1413m3_timer_callback);
}
WRITE8_HANDLER( nb1413m3_nmi_clock_w )