diff options
author | 2008-11-26 06:38:08 +0000 | |
---|---|---|
committer | 2008-11-26 06:38:08 +0000 | |
commit | 6924ad81208bf71964ee63da20d14582972331f0 (patch) | |
tree | a287ea66747c45300dae4963f0bbaa5942b604c3 /src/emu/sound/2203intf.c | |
parent | bbac5a66b24aae68a2822fc4d3fcb17b63c704ab (diff) |
Changed timer_alloc, timer_set, timer_pulse, timer_call_after_resynch,
and timer_get_time to pass the machine parameter. Moved timer globals
to hang off of the running_machine.
Diffstat (limited to 'src/emu/sound/2203intf.c')
-rw-r--r-- | src/emu/sound/2203intf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/sound/2203intf.c b/src/emu/sound/2203intf.c index b39d749136b..4446e14bf3d 100644 --- a/src/emu/sound/2203intf.c +++ b/src/emu/sound/2203intf.c @@ -128,8 +128,8 @@ static SND_START( ym2203 ) if (!info->psg) return NULL; /* Timer Handler set */ - info->timer[0] = timer_alloc(timer_callback_2203_0, info); - info->timer[1] = timer_alloc(timer_callback_2203_1, info); + info->timer[0] = timer_alloc(Machine, timer_callback_2203_0, info); + info->timer[1] = timer_alloc(Machine, timer_callback_2203_1, info); /* stream system initialize */ info->stream = stream_create(0,1,rate,info,ym2203_stream_update); |