Fix for CD-ROM timings - seek times are no longer always calculated as if it was seeking from sector 0.

This commit is contained in:
OBattler
2023-12-28 18:42:16 +01:00
parent c255bd5161
commit 137581c080

View File

@@ -1751,7 +1751,7 @@ scsi_cdrom_command(scsi_common_t *sc, uint8_t *cdb)
int used_len;
int alloc_length;
int msf;
int pos = 0;
int pos = dev->drv->seek_pos;
int size_idx;
int idx = 0;
uint32_t feature;