Skip to content

Commit

Permalink
Merge pull request #382 from magumagu/faster-fast-disc-speed
Browse files Browse the repository at this point in the history
DVDInterface: make fast disc speed faster.
  • Loading branch information
shuffle2 committed May 22, 2014
2 parents 4fb10a1 + 5dffa28 commit 9ce269c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Source/Core/Core/HW/DVDInterface.cpp
Expand Up @@ -728,10 +728,12 @@ void ExecuteCommand()

if (SConfig::GetInstance().m_LocalCoreStartupParameter.bFastDiscSpeed)
{
// Make the virtual DVD drive much faster than a physical drive if
// the user requests it; most games aren't very sensitive to the speed,
// and everyone likes shorter load times.
ticksUntilTC /= 8;
// Make sure fast disc speed performs "instant" reads; in addition
// to being used to speed up games, fast disc speed is used as a
// workaround for crashes in certain games, including Star Wars
// Rogue Leader.
FinishExecuteRead();
return;
}

CoreTiming::ScheduleEvent((int)ticksUntilTC, tc);
Expand Down

0 comments on commit 9ce269c

Please sign in to comment.