summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/cdp1869.c
diff options
context:
space:
mode:
author Fabio Priuli <etabeta78@users.noreply.github.com>2010-01-06 13:26:30 +0000
committer Fabio Priuli <etabeta78@users.noreply.github.com>2010-01-06 13:26:30 +0000
commita406d628ff583793027c2e8cfa00650f6abcd0b4 (patch)
tree2076e600f64b4c0cb4f96a4b4b044eea3b550be1 /src/emu/sound/cdp1869.c
parentfb8599a36c74c106bda3166ece33c7d96379ed0c (diff)
Replaced all occurrences of cputag_get_cpu with devtag_get_device: the former function was just an alias and now cpus are no different from other devices
Removed cputag_get_cpu and cputag_reset (another alias, not even used in the source) from cpuexec.h
Diffstat (limited to 'src/emu/sound/cdp1869.c')
-rw-r--r--src/emu/sound/cdp1869.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/cdp1869.c b/src/emu/sound/cdp1869.c
index a304dc58519..8aa7e5bd833 100644
--- a/src/emu/sound/cdp1869.c
+++ b/src/emu/sound/cdp1869.c
@@ -886,7 +886,7 @@ static DEVICE_START( cdp1869 )
assert(cdp1869->screen != NULL);
/* get the CPU device */
- cdp1869->cpu = cputag_get_cpu(device->machine, cdp1869->intf->cpu_tag);
+ cdp1869->cpu = devtag_get_device(device->machine, cdp1869->intf->cpu_tag);
assert(cdp1869->cpu != NULL);
/* allocate predisplay timer */