Core/BootManager: Disable loading time emulation for Riivolution-patched games until we have proper emulation for that.

This commit is contained in:
Admiral H. Curtiss 2021-10-10 23:23:20 +02:00
parent 6394960f54
commit d0c11f76b5
No known key found for this signature in database
GPG Key ID: F051B4C4044F33FB
1 changed files with 4 additions and 0 deletions

View File

@ -418,6 +418,10 @@ bool BootCore(std::unique_ptr<BootParameters> 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)