CdRom: Fix clear error bit in StartReading()

This commit is contained in:
Connor McLaughlin 2022-04-17 20:27:35 +10:00 committed by refractionpcsx2
parent b10249af7d
commit 06beadba74
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ static __fi void StartReading(u32 type)
{ {
cdr.Reading = type; cdr.Reading = type;
// Read's retry. If there's a status error clear and try, try again // Read's retry. If there's a status error clear and try, try again
cdr.StatP &~ STATUS_ERROR; cdr.StatP &= ~STATUS_ERROR;
cdr.FirstSector = 1; cdr.FirstSector = 1;
cdr.Readed = 0xff; cdr.Readed = 0xff;
//DevCon.Warning("ReadN/ReadS delay: %d", sectorSeekReadDelay); //DevCon.Warning("ReadN/ReadS delay: %d", sectorSeekReadDelay);