mirror of
https://github.com/86Box/86Box.git
synced 2026-02-27 17:34:25 -07:00
Bumped maximum UDMA mode from 2 (ATA 33) to 4 (ATA 66) so it can be used where supported.
This commit is contained in:
@@ -2595,7 +2595,7 @@ scsi_cdrom_get_max(int ide_has_dma, int type)
|
||||
ret = ide_has_dma ? 2 : -1;
|
||||
break;
|
||||
case TYPE_UDMA:
|
||||
ret = ide_has_dma ? 2 : -1;
|
||||
ret = ide_has_dma ? 4 /*2*/ : -1;
|
||||
break;
|
||||
default:
|
||||
ret = -1;
|
||||
|
||||
Reference in New Issue
Block a user