From 5dffa28f0a53951f1f94fc8fd71265d017a43ea1 Mon Sep 17 00:00:00 2001 From: magumagu Date: Sun, 18 May 2014 20:03:55 -0700 Subject: [PATCH] DVDInterface: make fast disc speed faster. Fixes workaround for crash in Star Wars Rogue Leader. --- Source/Core/Core/HW/DVDInterface.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Source/Core/Core/HW/DVDInterface.cpp b/Source/Core/Core/HW/DVDInterface.cpp index 16094ef609b5..19f3960454fb 100644 --- a/Source/Core/Core/HW/DVDInterface.cpp +++ b/Source/Core/Core/HW/DVDInterface.cpp @@ -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);