diff options
| author | 2020-12-19 19:19:42 +0100 | |
|---|---|---|
| committer | 2020-12-19 19:19:42 +0100 | |
| commit | 10b0ab792681b27664030d53d8e1ff610d0010cf (patch) | |
| tree | f4b0dbe676403bc83ee895684c475e56340c1fc4 /src/yuzu_cmd/config.cpp | |
| parent | Merge pull request #5205 from Morph1984/oss-extended-plus-minus (diff) | |
| download | yuzu-10b0ab792681b27664030d53d8e1ff610d0010cf.tar.gz yuzu-10b0ab792681b27664030d53d8e1ff610d0010cf.tar.xz yuzu-10b0ab792681b27664030d53d8e1ff610d0010cf.zip | |
yuzu: Remove gdbstub configuration
The gdbstub itself was removed with https://github.com/yuzu-emu/yuzu/pull/5028.
This PR just removes the remaining gdb configuration code from the emulator and the UI.
Diffstat (limited to 'src/yuzu_cmd/config.cpp')
| -rw-r--r-- | src/yuzu_cmd/config.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/yuzu_cmd/config.cpp b/src/yuzu_cmd/config.cpp index b70f71a08..38075c345 100644 --- a/src/yuzu_cmd/config.cpp +++ b/src/yuzu_cmd/config.cpp | |||
| @@ -429,9 +429,6 @@ void Config::ReadValues() { | |||
| 429 | // Debugging | 429 | // Debugging |
| 430 | Settings::values.record_frame_times = | 430 | Settings::values.record_frame_times = |
| 431 | sdl2_config->GetBoolean("Debugging", "record_frame_times", false); | 431 | sdl2_config->GetBoolean("Debugging", "record_frame_times", false); |
| 432 | Settings::values.use_gdbstub = sdl2_config->GetBoolean("Debugging", "use_gdbstub", false); | ||
| 433 | Settings::values.gdbstub_port = | ||
| 434 | static_cast<u16>(sdl2_config->GetInteger("Debugging", "gdbstub_port", 24689)); | ||
| 435 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); | 432 | Settings::values.program_args = sdl2_config->Get("Debugging", "program_args", ""); |
| 436 | Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); | 433 | Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); |
| 437 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); | 434 | Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); |