summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2011-06-25 15:24:10 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2011-06-25 15:24:10 +0000
commitff5532b50208ae750828cc17e7ffa8511f9f9bfa (patch)
tree2ca78659d29c9a47355114d9288e164b97708b13
parent06623947e3dfa747d629173db07d09c1515506d2 (diff)
Fixed cdrom softlist loading (no whatsnew)
-rw-r--r--src/emu/imagedev/chd_cd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/imagedev/chd_cd.h b/src/emu/imagedev/chd_cd.h
index 8095b1dd3ad..fecb1f7e6b0 100644
--- a/src/emu/imagedev/chd_cd.h
+++ b/src/emu/imagedev/chd_cd.h
@@ -37,7 +37,7 @@ public:
virtual bool call_load();
virtual void call_unload();
virtual void call_display_info() { if (m_device_displayinfo) m_device_displayinfo(*this); }
- virtual bool call_softlist_load(char *swlist, char *swname, rom_entry *start_entry) { return load_software(swlist, swname, start_entry); }
+ virtual bool call_softlist_load(char *swlist, char *swname, rom_entry *start_entry) { load_software_part_region(this, swlist, swname, start_entry ); return TRUE; }
virtual iodevice_t image_type() const { return IO_CDROM; }