diff options
author | bunnei <bunneidev@gmail.com> | 2020-12-20 20:56:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-20 20:56:08 +0100 |
commit | d5984284ed1b1669553763d96854a6f1e1bf5fd0 (patch) | |
tree | f4b0dbe676403bc83ee895684c475e56340c1fc4 /src/yuzu_tester | |
parent | Merge pull request #5205 from Morph1984/oss-extended-plus-minus (diff) | |
parent | yuzu: Remove gdbstub configuration (diff) | |
download | yuzu-d5984284ed1b1669553763d96854a6f1e1bf5fd0.tar yuzu-d5984284ed1b1669553763d96854a6f1e1bf5fd0.tar.gz yuzu-d5984284ed1b1669553763d96854a6f1e1bf5fd0.tar.bz2 yuzu-d5984284ed1b1669553763d96854a6f1e1bf5fd0.tar.lz yuzu-d5984284ed1b1669553763d96854a6f1e1bf5fd0.tar.xz yuzu-d5984284ed1b1669553763d96854a6f1e1bf5fd0.tar.zst yuzu-d5984284ed1b1669553763d96854a6f1e1bf5fd0.zip |
Diffstat (limited to 'src/yuzu_tester')
-rw-r--r-- | src/yuzu_tester/config.cpp | 1 | ||||
-rw-r--r-- | src/yuzu_tester/yuzu.cpp | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu_tester/config.cpp b/src/yuzu_tester/config.cpp index b6cdc7c1c..91684e96e 100644 --- a/src/yuzu_tester/config.cpp +++ b/src/yuzu_tester/config.cpp @@ -158,7 +158,6 @@ void Config::ReadValues() { Settings::values.use_dev_keys = sdl2_config->GetBoolean("Miscellaneous", "use_dev_keys", false); // Debugging - Settings::values.use_gdbstub = false; Settings::values.program_args = ""; Settings::values.dump_exefs = sdl2_config->GetBoolean("Debugging", "dump_exefs", false); Settings::values.dump_nso = sdl2_config->GetBoolean("Debugging", "dump_nso", false); diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp index 50bd7ae41..6435ffabb 100644 --- a/src/yuzu_tester/yuzu.cpp +++ b/src/yuzu_tester/yuzu.cpp @@ -162,7 +162,6 @@ int main(int argc, char** argv) { Core::System& system{Core::System::GetInstance()}; - Settings::values.use_gdbstub = false; Settings::Apply(system); const auto emu_window{std::make_unique<EmuWindow_SDL2_Hide>()}; |