mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
Merge pull request #382 from magumagu/faster-fast-disc-speed
DVDInterface: make fast disc speed faster.
This commit is contained in:
@ -728,10 +728,12 @@ void ExecuteCommand()
|
|||||||
|
|
||||||
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bFastDiscSpeed)
|
if (SConfig::GetInstance().m_LocalCoreStartupParameter.bFastDiscSpeed)
|
||||||
{
|
{
|
||||||
// Make the virtual DVD drive much faster than a physical drive if
|
// Make sure fast disc speed performs "instant" reads; in addition
|
||||||
// the user requests it; most games aren't very sensitive to the speed,
|
// to being used to speed up games, fast disc speed is used as a
|
||||||
// and everyone likes shorter load times.
|
// workaround for crashes in certain games, including Star Wars
|
||||||
ticksUntilTC /= 8;
|
// Rogue Leader.
|
||||||
|
FinishExecuteRead();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
CoreTiming::ScheduleEvent((int)ticksUntilTC, tc);
|
CoreTiming::ScheduleEvent((int)ticksUntilTC, tc);
|
||||||
|
Reference in New Issue
Block a user