summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/galaxian.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/audio/galaxian.c')
-rw-r--r--src/mame/audio/galaxian.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/audio/galaxian.c b/src/mame/audio/galaxian.c
index fca80a2e262..ee1681dbdf8 100644
--- a/src/mame/audio/galaxian.c
+++ b/src/mame/audio/galaxian.c
@@ -363,12 +363,12 @@ static void galaxian_sh_start(void)
sample_set_volume(CHANNEL_LFO+2,0);
sample_start_raw(CHANNEL_LFO+2,backgroundwave,sizeof(backgroundwave)/2,1000,1);
- noisetimer = timer_alloc(noise_timer_cb);
+ noisetimer = timer_alloc(noise_timer_cb, NULL);
timer_adjust(noisetimer, ATTOTIME_IN_NSEC((155000+22000)/100*693*22), 0, ATTOTIME_IN_NSEC((155000+22000)/100*693*22));
- lfotimer = timer_alloc(lfo_timer_cb);
+ lfotimer = timer_alloc(lfo_timer_cb, NULL);
- timer_pulse(attotime_make(0, Machine->screen[0].refresh), 0, galaxian_sh_update);
+ timer_pulse(attotime_make(0, Machine->screen[0].refresh), NULL, 0, galaxian_sh_update);
state_save_register_global(freq);
state_save_register_global(noise_enable);