From d0c11f76b5bc021d61109c4d231fa7e6503fbfdc Mon Sep 17 00:00:00 2001 From: "Admiral H. Curtiss" Date: Sun, 10 Oct 2021 23:23:20 +0200 Subject: [PATCH] Core/BootManager: Disable loading time emulation for Riivolution-patched games until we have proper emulation for that. --- Source/Core/Core/BootManager.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/Core/Core/BootManager.cpp b/Source/Core/Core/BootManager.cpp index 308cfbcd01..fca36916b3 100644 --- a/Source/Core/Core/BootManager.cpp +++ b/Source/Core/Core/BootManager.cpp @@ -418,6 +418,10 @@ bool BootCore(std::unique_ptr boot, const WindowSystemInfo& wsi) if (StartUp.bWii && DiscIO::IsNTSC(StartUp.m_region) && Config::Get(Config::SYSCONF_PAL60)) Config::SetCurrent(Config::SYSCONF_PAL60, false); + // Disable loading time emulation for Riivolution-patched games until we have proper emulation. + if (!boot->riivolution_patches.empty()) + StartUp.bFastDiscSpeed = true; + Core::UpdateWantDeterminism(/*initial*/ true); if (StartUp.bWii)