mirror of https://github.com/PCSX2/pcsx2.git
CdRom: Fix clear error bit in StartReading()
This commit is contained in:
parent
b10249af7d
commit
06beadba74
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue