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/nes/datach.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/nes/datach.h')
-rw-r--r-- | src/devices/bus/nes/datach.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/nes/datach.h b/src/devices/bus/nes/datach.h index cea5c098dc6..44d2040d99a 100644 --- a/src/devices/bus/nes/datach.h +++ b/src/devices/bus/nes/datach.h @@ -54,7 +54,7 @@ public: // image-level overrides virtual bool call_load() 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(); } virtual iodevice_t image_type() const override { return IO_CARTSLOT; } virtual bool is_readable() const override { return 1; } |