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/bus/vc4000/slot.h | |
parent | ae5dab64d7ad7c0a6facfb5e749ff028647bc2e3 (diff) |
Vas Crabb feedback: Replacing the enum with a class hierarchy, derived from 'software_list_loader'
Diffstat (limited to 'src/devices/bus/vc4000/slot.h')
-rw-r--r-- | src/devices/bus/vc4000/slot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/vc4000/slot.h b/src/devices/bus/vc4000/slot.h index 80c091eb95e..d05e9c70d9e 100644 --- a/src/devices/bus/vc4000/slot.h +++ b/src/devices/bus/vc4000/slot.h @@ -68,7 +68,7 @@ public: // image-level overrides virtual bool call_load() override; virtual void call_unload() override {} - virtual softlist_type get_softlist_type() const override { return softlist_type::ROM; } + virtual const software_list_loader &get_software_list_loader() const override { return rom_software_list_loader::instance(); } int get_type() { return m_type; } |