diff options
| author | 2021-06-16 14:03:01 -0400 | |
|---|---|---|
| committer | 2021-06-16 14:03:01 -0400 | |
| commit | 92942fe01bf290d247e1a51562a07fe280448b47 (patch) | |
| tree | 0868b1e5d5ae17a77dc18f678eb454b3e8f16c2b /src/yuzu_cmd/config.cpp | |
| parent | Merge pull request #6462 from Morph1984/proper-flush (diff) | |
| parent | common: fs: file: Remove redundant call to WriteStringToFile (diff) | |
| download | yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.gz yuzu-92942fe01bf290d247e1a51562a07fe280448b47.tar.xz yuzu-92942fe01bf290d247e1a51562a07fe280448b47.zip | |
Merge pull request #6460 from Morph1984/fs-access-log-fix
fsp_srv: Fix filesystem access logging
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 63f368fe5..107f097d0 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -477,6 +477,8 @@ void Config::ReadValues() { | |||
| 477 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); | 477 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); |
| 478 | Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); | 478 | Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); |
| 479 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); | 479 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); |
| 480 | Settings::values.enable_fs_access_log = | ||
| 481 | sdl2_config->GetBoolean("Debugging", "enable_fs_access_log", false); | ||
| 480 | Settings::values.reporting_services = | 482 | Settings::values.reporting_services = |
| 481 | sdl2_config->GetBoolean("Debugging", "reporting_services", false); | 483 | sdl2_config->GetBoolean("Debugging", "reporting_services", false); |
| 482 | Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false); | 484 | Settings::values.quest_flag = sdl2_config->GetBoolean("Debugging", "quest_flag", false); |