diff options
author | 2008-12-07 14:51:36 +0000 | |
---|---|---|
committer | 2008-12-07 14:51:36 +0000 | |
commit | 872ec206586ef24d68f6f731e065ece6a2f5668d (patch) | |
tree | 14bbec9d12b5184b85aca6758c3269bdc326d6b1 /src/emu/sound/2203intf.c | |
parent | 96321d328f4395119dbcf2f7ff228916f09a5542 (diff) |
From: Atari Ace [mailto:atari_ace@verizon.net]
Sent: Saturday, December 06, 2008 4:52 PM
To: submit@mamedev.org
Cc: atariace@hotmail.com
Subject: [patch] Deprecat.h cleanup
Hi mamedev,
This patch changes some global Machine references to use machine,
device->machine, ... instead, and removes any unneeded #include
"deprecat.h" lines as well (about 10% of them in fact). It was
generated using the attached script, and then reverting some cases
where it was overzealous.
~aa
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 030cda689b7..9a198fd86b2 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(Machine, timer_callback_2203_0, info); - info->timer[1] = timer_alloc(Machine, timer_callback_2203_1, info); + info->timer[0] = timer_alloc(device->machine, timer_callback_2203_0, info); + info->timer[1] = timer_alloc(device->machine, timer_callback_2203_1, info); /* stream system initialize */ info->stream = stream_create(0,1,rate,info,ym2203_stream_update); |