Merge branch 'PCSX2:master' into master

This commit is contained in:
987123879113 2022-09-18 21:28:00 +09:00 committed by GitHub
commit 440c3996ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -1249,6 +1249,11 @@ void Pcsx2Config::CopyRuntimeConfig(Pcsx2Config& cfg)
CurrentGameArgs = std::move(cfg.CurrentGameArgs);
CurrentAspectRatio = cfg.CurrentAspectRatio;
LimiterMode = cfg.LimiterMode;
for (u32 i = 0; i < sizeof(Mcd) / sizeof(Mcd[0]); i++)
{
Mcd[i].Type = cfg.Mcd[i].Type;
}
}
void EmuFolders::SetDefaults(SettingsInterface& si)