From 470f843262139e7bbfbf3c48649b84c3e0357ce6 Mon Sep 17 00:00:00 2001 From: Aaron Giles Date: Tue, 12 Jan 2010 06:54:57 +0000 Subject: Within src/emu, basic conversions: devtag_get_device ... machine->device() memory_find_address_space ... device->space() --- src/emu/sound.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/emu/sound.c') diff --git a/src/emu/sound.c b/src/emu/sound.c index fdc627866af..322a3795eb1 100644 --- a/src/emu/sound.c +++ b/src/emu/sound.c @@ -436,7 +436,7 @@ static void route_sound(running_machine *machine) /* iterate over all routes */ for (route = config->routelist; route != NULL; route = route->next) { - const device_config *target_device = devtag_get_device(machine, route->target); + const device_config *target_device = machine->device(route->target); /* if neither found, it's fatal */ if (target_device == NULL) @@ -473,7 +473,7 @@ static void route_sound(running_machine *machine) /* iterate over all routes */ for (route = config->routelist; route != NULL; route = route->next) { - const device_config *target_device = devtag_get_device(machine, route->target); + const device_config *target_device = machine->device(route->target); int inputnum = route->input; sound_stream *stream; int streamoutput; -- cgit v1.2.3-70-g09d2