diff options
author | 2016-07-23 09:10:14 -0400 | |
---|---|---|
committer | 2016-07-23 09:10:14 -0400 | |
commit | e45d316bc9683d46c5a0414e57f9ec1b99d64d05 (patch) | |
tree | 15bbe60850ecbf2c4a1d590e3bd90498887cebf1 /src/devices/imagedev/flopdrv.h | |
parent | ae5dab64d7ad7c0a6facfb5e749ff028647bc2e3 (diff) |
Vas Crabb feedback: Replacing the enum with a class hierarchy, derived from 'software_list_loader'
Diffstat (limited to 'src/devices/imagedev/flopdrv.h')
-rw-r--r-- | src/devices/imagedev/flopdrv.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/imagedev/flopdrv.h b/src/devices/imagedev/flopdrv.h index 7aa616e89b3..080093e1b17 100644 --- a/src/devices/imagedev/flopdrv.h +++ b/src/devices/imagedev/flopdrv.h @@ -100,7 +100,7 @@ public: template<class _Object> static devcb_base &set_out_idx_func(device_t &device, _Object object) { return downcast<legacy_floppy_image_device &>(device).m_out_idx_func.set_callback(object); } virtual bool call_load() override; - virtual softlist_type get_softlist_type() const override { return softlist_type::SOFTWARE; } + virtual const software_list_loader &get_software_list_loader() const override { return image_software_list_loader::instance(); } virtual bool call_create(int format_type, util::option_resolution *format_options) override; virtual void call_unload() override; |