diff options
| author | 2018-11-15 14:46:10 -0800 | |
|---|---|---|
| committer | 2018-11-15 14:46:10 -0800 | |
| commit | 97605e36f7c572d144a8c8f0a5e1beb8ca2b0f51 (patch) | |
| tree | c6f69e9269a8e6c4771b1fb338c2677d62f7c48e /src/yuzu_cmd | |
| parent | Merge pull request #1691 from lioncash/audren (diff) | |
| parent | patch_manager: Add support for dumping decompressed NSOs (diff) | |
| download | yuzu-97605e36f7c572d144a8c8f0a5e1beb8ca2b0f51.tar.gz yuzu-97605e36f7c572d144a8c8f0a5e1beb8ca2b0f51.tar.xz yuzu-97605e36f7c572d144a8c8f0a5e1beb8ca2b0f51.zip | |
Merge pull request #1618 from DarkLordZach/dump-nso
patch_manager: Add support for dumping uncompressed NSOs
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 f3134d4cb..9cc409fd5 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_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); | ||
| 151 | 152 | ||
| 152 | // Web Service | 153 | // Web Service |
| 153 | Settings::values.enable_telemetry = | 154 | Settings::values.enable_telemetry = |
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h index dd6644d79..ecf625e7b 100644 --- a/src/yuzu_cmd/default_ini.h +++ b/src/yuzu_cmd/default_ini.h | |||
| @@ -206,6 +206,8 @@ log_filter = *:Trace | |||
| 206 | # Port for listening to GDB connections. | 206 | # Port for listening to GDB connections. |
| 207 | use_gdbstub=false | 207 | use_gdbstub=false |
| 208 | gdbstub_port=24689 | 208 | gdbstub_port=24689 |
| 209 | # Determines whether or not yuzu will dump all NSOs it attempts to load while loading them | ||
| 210 | dump_nso=false | ||
| 209 | 211 | ||
| 210 | [WebService] | 212 | [WebService] |
| 211 | # Whether or not to enable telemetry | 213 | # Whether or not to enable telemetry |