diff options
author | 2010-12-31 21:42:55 +0000 | |
---|---|---|
committer | 2010-12-31 21:42:55 +0000 | |
commit | 3b41606ca0c02056604a55a7b1f5165e80bc11fb (patch) | |
tree | 415d338c92efb4c7f1d4922255060f279d1d4fa2 /src/emu/romload.h | |
parent | 2ca38fad3e665d2e4e0212263a07819d36f4ba7f (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.h')
-rw-r--r-- | src/emu/romload.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/romload.h b/src/emu/romload.h index 06deed4980e..0c66ff7add9 100644 --- a/src/emu/romload.h +++ b/src/emu/romload.h @@ -324,6 +324,6 @@ chd_file *get_disk_handle(running_machine *machine, const char *region); /* set a pointer to the CHD file associated with the given region */ void set_disk_handle(running_machine *machine, const char *region, mame_file *file, chd_file *chd); -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); #endif /* __ROMLOAD_H__ */ |