diff options
| author | 2018-11-20 17:49:09 -0500 | |
|---|---|---|
| committer | 2018-11-20 17:49:09 -0500 | |
| commit | 17d8e25cbfd0c8937c8791bc1941af85f9541666 (patch) | |
| tree | 334d1ccaa0fdba0cd02cf4b721de2b0408ca62c6 /src/yuzu_cmd/config.cpp | |
| parent | Merge pull request #1722 from MysticExile/enable-applictation-crash-report (diff) | |
| download | yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar.gz yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.tar.xz yuzu-17d8e25cbfd0c8937c8791bc1941af85f9541666.zip | |
settings: Add option to dump ExeFS of games upon launch
When enabled, all exefs(es) will be copied to yuzu/dump/<title_id>/exefs.
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 1 |
1 files changed, 1 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() { | |||
| 148 | Settings::values.gdbstub_port = | 148 | Settings::values.gdbstub_port = |
| 149 | static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); | 149 | static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); |
| 150 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); | 150 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); |
| 151 | Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); | ||
| 151 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); | 152 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); |
| 152 | 153 | ||
| 153 | // Web Service | 154 | // Web Service |