summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/gba
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-07-23 09:10:14 -0400
committer Nathan Woods <npwoods@mess.org>2016-07-23 09:10:14 -0400
commite45d316bc9683d46c5a0414e57f9ec1b99d64d05 (patch)
tree15bbe60850ecbf2c4a1d590e3bd90498887cebf1 /src/devices/bus/gba
parentae5dab64d7ad7c0a6facfb5e749ff028647bc2e3 (diff)
Vas Crabb feedback: Replacing the enum with a class hierarchy, derived from 'software_list_loader'
Diffstat (limited to 'src/devices/bus/gba')
-rw-r--r--src/devices/bus/gba/gba_slot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/gba/gba_slot.h b/src/devices/bus/gba/gba_slot.h
index 5a50cb736b5..ddf2cb7ea2f 100644
--- a/src/devices/bus/gba/gba_slot.h
+++ b/src/devices/bus/gba/gba_slot.h
@@ -87,7 +87,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; }
int get_cart_type(UINT8 *ROM, UINT32 len);