From ff5532b50208ae750828cc17e7ffa8511f9f9bfa Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 25 Jun 2011 15:24:10 +0000 Subject: [PATCH] Fixed cdrom softlist loading (no whatsnew) --- src/emu/imagedev/chd_cd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }