diff options
| author | 2023-05-04 19:29:14 -0400 | |
|---|---|---|
| committer | 2023-05-04 19:29:14 -0400 | |
| commit | 8f904d1b62813dd72abd9456bafb9fd73400edd7 (patch) | |
| tree | 4bb13cb6204776a37b9a2410f133418974bd9fd3 | |
| parent | 34ea2f26de1e6f29b68227b60f846b397e275a8c (diff) | |
Fix validation after 28104cdbdfc39b0ced6411381ffb074772dce345
| -rw-r--r-- | src/devices/bus/ata/gdrom.cpp | 2 | ||||
| -rw-r--r-- | src/mame/philips/cdi.cpp | 1 |
2 files changed, 1 insertions, 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"); } |
