CDROM: Increase seek delay by one sector

Fixes Resident Evil 2.
This commit is contained in:
Connor McLaughlin 2020-05-30 02:00:50 +10:00
parent 38fc843541
commit 07e8ab4446

View file

@ -580,7 +580,7 @@ TickCount CDROM::GetTicksForSeek(CDImage::LBA new_lba)
// it's unlikely that the drive would seek to exactly the correct position, so simulate this by adding the time
// required to read a few sectors
ticks += GetTicksForRead() * 3u;
ticks += GetTicksForRead() * 4u;
Log_DevPrintf("Seek time for %u LBAs: %d", lba_diff, ticks);
return ticks;