mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-26 15:49:50 -06:00
Fixed the fast disc speed option (immediately service the interrupt instead of going through the scheduler).
This commit is contained in:
@ -1046,8 +1046,19 @@ void ExecuteCommand()
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (ticks_until_TC)
|
||||||
|
{
|
||||||
// The transfer is finished after a delay
|
// The transfer is finished after a delay
|
||||||
CoreTiming::ScheduleEvent((int)ticks_until_TC, tc);
|
CoreTiming::ScheduleEvent((int)ticks_until_TC, tc);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// transfer is done
|
||||||
|
m_DICR.TSTART = 0;
|
||||||
|
m_DILENGTH.Length = 0;
|
||||||
|
GenerateDIInterrupt(INT_TCINT);
|
||||||
|
g_ErrorCode = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Simulates the timing aspects of reading data from a disc.
|
// Simulates the timing aspects of reading data from a disc.
|
||||||
|
Reference in New Issue
Block a user