diff options
Diffstat (limited to '')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 2 | ||||
| -rw-r--r-- | src/yuzu_cmd/default_ini.h | 2 |
2 files changed, 4 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); |
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index f48d935a1..c32421671 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h | |||
| @@ -338,6 +338,8 @@ record_frame_times = | |||
| 338 | dump_exefs=false | 338 | dump_exefs=false |
| 339 | # Determines whether or not yuzu will dump all NSOs it attempts to load while loading them | 339 | # Determines whether or not yuzu will dump all NSOs it attempts to load while loading them |
| 340 | dump_nso=false | 340 | dump_nso=false |
| 341 | # Determines whether or not yuzu will save the filesystem access log. | ||
| 342 | enable_fs_access_log=false | ||
| 341 | # Determines whether or not yuzu will report to the game that the emulated console is in Kiosk Mode | 343 | # Determines whether or not yuzu will report to the game that the emulated console is in Kiosk Mode |
| 342 | # false: Retail/Normal Mode (default), true: Kiosk Mode | 344 | # false: Retail/Normal Mode (default), true: Kiosk Mode |
| 343 | quest_flag = | 345 | quest_flag = |