diff options
author | 2016-07-21 21:10:18 -0400 | |
---|---|---|
committer | 2016-07-21 21:10:18 -0400 | |
commit | ae5dab64d7ad7c0a6facfb5e749ff028647bc2e3 (patch) | |
tree | 75eb026f354ba15a87ad881353d49d4581adf3df /src/devices/bus/coleco/exp.cpp | |
parent | 85d9536cdb972a1cba7188a8fb4f842f4856353b (diff) |
device_image_interface::call_softlist_load() was a virtual function where every implementation was one of two copy-and-paste jobs. This change consolidates all of these implementations, replacing that virtual function with a mere hook that chooses which technique to perform
Diffstat (limited to 'src/devices/bus/coleco/exp.cpp')
-rw-r--r-- | src/devices/bus/coleco/exp.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/src/devices/bus/coleco/exp.cpp b/src/devices/bus/coleco/exp.cpp index 2b2093f2b1d..80bd84f6e10 100644 --- a/src/devices/bus/coleco/exp.cpp +++ b/src/devices/bus/coleco/exp.cpp @@ -97,18 +97,6 @@ bool colecovision_cartridge_slot_device::call_load() //------------------------------------------------- -// call_softlist_load - -//------------------------------------------------- - -bool colecovision_cartridge_slot_device::call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry) -{ - machine().rom_load().load_software_part_region(*this, swlist, swname, start_entry); - - return true; -} - - -//------------------------------------------------- // get_default_card_software - //------------------------------------------------- |