RegTest: Disable fast boot and game settings

This commit is contained in:
Connor McLaughlin
2022-10-13 22:17:23 +10:00
parent c9d13c028e
commit c528a96215
2 changed files with 4 additions and 2 deletions

View File

@ -94,6 +94,8 @@ bool RegTestHost::InitializeConfig()
si.SetStringValue("Audio", "Backend", Settings::GetAudioBackendName(AudioBackend::Null));
si.SetStringValue("Logging", "LogLevel", Settings::GetLogLevelName(LOGLEVEL_VERBOSE));
si.SetBoolValue("Logging", "LogToConsole", true);
si.SetBoolValue("Main", "ApplyGameSettings", false); // don't want game settings interfering
si.SetBoolValue("BIOS", "PatchFastBoot", true); // no point validating the bios intro..
// disable all sources
for (u32 i = 0; i < static_cast<u32>(InputSourceType::Count); i++)