summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/romload.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-12-31 21:42:55 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-12-31 21:42:55 +0000
commit3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch)
tree415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/romload.c
parent2ca38fad3e665d2e4e0212263a07819d36f4ba7f (diff)
running_device -> device_t
They both already existed. No sense in having two names for the same object type.
Diffstat (limited to 'src/emu/romload.c')
-rw-r--r--src/emu/romload.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/romload.c b/src/emu/romload.c
index 01f68e26f5b..ca1737caaac 100644
--- a/src/emu/romload.c
+++ b/src/emu/romload.c
@@ -1226,7 +1226,7 @@ static UINT32 normalize_flags_for_device(running_machine *machine, UINT32 startf
more general process_region_list.
-------------------------------------------------*/
-void load_software_part_region(running_device *device, char *swlist, char *swname, rom_entry *start_region)
+void load_software_part_region(device_t *device, char *swlist, char *swname, rom_entry *start_region)
{
astring locationtag(swlist, PATH_SEPARATOR, swname);
rom_load_data *romdata = device->machine->romload_data;