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.h | |
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.h')
-rw-r--r-- | src/devices/bus/coleco/exp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/coleco/exp.h b/src/devices/bus/coleco/exp.h index 3d8091c215b..1d4ed130be4 100644 --- a/src/devices/bus/coleco/exp.h +++ b/src/devices/bus/coleco/exp.h @@ -79,7 +79,7 @@ protected: // image-level overrides virtual bool call_load() override; - virtual bool call_softlist_load(software_list_device &swlist, const char *swname, const rom_entry *start_entry) override; + virtual softlist_type get_softlist_type() const override { return softlist_type::ROM; } virtual iodevice_t image_type() const override { return IO_CARTSLOT; } |