mirror of https://github.com/PCSX2/pcsx2.git
CDVD: Don't delay abort commands on DVDs, at least for now..
Fixes #5301
This commit is contained in:
parent
aa475a8d2e
commit
fb5e5cc13f
|
@ -1144,7 +1144,9 @@ __fi void cdvdReadInterrupt()
|
|||
|
||||
if (cdvd.AbortRequested)
|
||||
{
|
||||
if (!cdvdIsDVD() || !(cdvd.Sector & 0xF))
|
||||
// Code in the CDVD controller suggest there is an alignment thing with DVD's but this seems to just break stuff (Auto Modellista).
|
||||
// Needs more investigation
|
||||
//if (!cdvdIsDVD() || !(cdvd.Sector & 0xF))
|
||||
{
|
||||
Console.Warning("Read Abort");
|
||||
cdvd.Error = 0x1; // Abort Error
|
||||
|
|
Loading…
Reference in New Issue