summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-13 10:30:54 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-16 06:06:02 +0200
commit0f48292de19227fcc61dd9ea71be321824368f9e (patch)
tree35a6d30abdc9435973116d145ff4db3a7ec22a54 /src/yuzu_cmd
parentMerge pull request #6470 from ameerj/lm-silence (diff)
downloadyuzu-0f48292de19227fcc61dd9ea71be321824368f9e.tar
yuzu-0f48292de19227fcc61dd9ea71be321824368f9e.tar.gz
yuzu-0f48292de19227fcc61dd9ea71be321824368f9e.tar.bz2
yuzu-0f48292de19227fcc61dd9ea71be321824368f9e.tar.lz
yuzu-0f48292de19227fcc61dd9ea71be321824368f9e.tar.xz
yuzu-0f48292de19227fcc61dd9ea71be321824368f9e.tar.zst
yuzu-0f48292de19227fcc61dd9ea71be321824368f9e.zip
Diffstat (limited to '')
-rw-r--r--src/yuzu_cmd/config.cpp2
-rw-r--r--src/yuzu_cmd/default_ini.h2
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() {
Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", "");
Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false);
Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false);
+ Settings::values.enable_fs_access_log =
+ sdl2_config->GetBoolean("Debugging", "enable_fs_access_log", false);
Settings::values.reporting_services =
sdl2_config->GetBoolean("Debugging", "reporting_services", false);
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 =
dump_exefs=false
# Determines whether or not yuzu will dump all NSOs it attempts to load while loading them
dump_nso=false
+# Determines whether or not yuzu will save the filesystem access log.
+enable_fs_access_log=false
# Determines whether or not yuzu will report to the game that the emulated console is in Kiosk Mode
# false: Retail/Normal Mode (default), true: Kiosk Mode
quest_flag =