From 8f904d1b62813dd72abd9456bafb9fd73400edd7 Mon Sep 17 00:00:00 2001 From: AJR Date: Thu, 4 May 2023 19:29:14 -0400 Subject: Fix validation after 28104cdbdfc39b0ced6411381ffb074772dce345 --- src/devices/bus/ata/gdrom.cpp | 2 +- src/mame/philips/cdi.cpp | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/devices/bus/ata/gdrom.cpp b/src/devices/bus/ata/gdrom.cpp index ba2020cf994..135cbcb66b4 100644 --- a/src/devices/bus/ata/gdrom.cpp +++ b/src/devices/bus/ata/gdrom.cpp @@ -502,7 +502,7 @@ void gdrom_device::WriteData( uint8_t *data, int dataLength ) DEFINE_DEVICE_TYPE(ATAPI_GDROM, gdrom_device, "gdrom", "GD-ROM") gdrom_device::gdrom_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) : - atapi_cdrom_device(mconfig, GDROM, tag, owner, clock) + atapi_cdrom_device(mconfig, ATAPI_GDROM, tag, owner, clock) { } diff --git a/src/mame/philips/cdi.cpp b/src/mame/philips/cdi.cpp index 8a97eb89395..6eeff63bed9 100644 --- a/src/mame/philips/cdi.cpp +++ b/src/mame/philips/cdi.cpp @@ -591,7 +591,6 @@ void cdi_state::cdimono1(machine_config &config) m_slave_hle->read_mousey().set_ioport("MOUSEY"); m_slave_hle->read_mousebtn().set_ioport("MOUSEBTN"); - CDROM(config, "cdrom").set_interface("cdi_cdrom"); SOFTWARE_LIST(config, "cd_list").set_original("cdi").set_filter("!DVC"); } -- cgit v1.2.3