diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 432379705..8f889be3a 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -1053,6 +1053,10 @@ void GMainWindow::BootGame(const QString& filename) { | |||
| 1053 | if (!(loader == nullptr || loader->ReadProgramId(title_id) != Loader::ResultStatus::Success)) { | 1053 | if (!(loader == nullptr || loader->ReadProgramId(title_id) != Loader::ResultStatus::Success)) { |
| 1054 | // Load per game settings | 1054 | // Load per game settings |
| 1055 | Config per_game_config(fmt::format("{:016X}.ini", title_id), false); | 1055 | Config per_game_config(fmt::format("{:016X}.ini", title_id), false); |
| 1056 | |||
| 1057 | Settings::values.use_asynchronous_gpu_emulation.SetValue( | ||
| 1058 | Settings::values.use_asynchronous_gpu_emulation.GetValue() || | ||
| 1059 | Settings::values.use_multi_core.GetValue()); | ||
| 1056 | } | 1060 | } |
| 1057 | 1061 | ||
| 1058 | Settings::LogSettings(); | 1062 | Settings::LogSettings(); |