diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-11-20 23:49:09 +0100 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-11-20 23:49:09 +0100 |
commit | 17d8e25cbfd0c8937c8791bc1941af85f9541666 (patch) | |
tree | 334d1ccaa0fdba0cd02cf4b721de2b0408ca62c6 /src/yuzu_cmd | |
parent | Merge pull request #1722 from MysticExile/enable-applictation-crash-report (diff) | |
download | yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar.gz yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar.bz2 yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar.lz yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar.xz yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar.zst yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.zip |
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r-- | src/yuzu_cmd/config.cpp | 1 | ||||
-rw-r--r-- | src/yuzu_cmd/default_ini.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index 9cc409fd5..b443bfba7 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp @@ -148,6 +148,7 @@ void Config::ReadValues() { Settings::values.gdbstub_port = static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); 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); // Web Service diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index ecf625e7b..d73669f36 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h @@ -206,6 +206,8 @@ log_filter = *:Trace # Port for listening to GDB connections. use_gdbstub=false gdbstub_port=24689 +# Determines whether or not yuzu will dump the ExeFS of all games it attempts to load while loading them +dump_exefs=false # Determines whether or not yuzu will dump all NSOs it attempts to load while loading them dump_nso=false |