From 676a41d9d5693d51214ee7615644bb7e745f4809 Mon Sep 17 00:00:00 2001 From: OBattler Date: Sat, 29 Oct 2022 17:58:53 +0200 Subject: [PATCH] Fixed interrupt DRQ on CD-ROM - should fix the Windows 95 Protection Errors. --- src/scsi/scsi_cdrom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scsi/scsi_cdrom.c b/src/scsi/scsi_cdrom.c index 553291263..b23782278 100644 --- a/src/scsi/scsi_cdrom.c +++ b/src/scsi/scsi_cdrom.c @@ -2808,7 +2808,7 @@ scsi_cdrom_drive_reset(int c) id->phase_data_out = scsi_cdrom_phase_data_out; id->command_stop = scsi_cdrom_command_stop; id->bus_master_error = scsi_cdrom_bus_master_error; - id->interrupt_drq = !dev->early; + id->interrupt_drq = dev->early; ide_atapi_attach(id); }