diff options
author | FearlessTobi <thm.frey@gmail.com> | 2020-12-19 19:19:42 +0100 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2020-12-19 19:19:42 +0100 |
commit | 10b0ab792681b27664030d53d8e1ff610d0010cf (patch) | |
tree | f4b0dbe676403bc83ee895684c475e56340c1fc4 /src/core/settings.cpp | |
parent | 0b47f7a46b0b7f182a569fa4aefbfb8cd301e92f (diff) |
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/core/settings.cpp')
-rw-r--r-- | src/core/settings.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/settings.cpp b/src/core/settings.cpp index e9997a263..47d9ecf9a 100644 --- a/src/core/settings.cpp +++ b/src/core/settings.cpp @@ -72,8 +72,6 @@ void LogSettings() { log_setting("DataStorage_UseVirtualSd", values.use_virtual_sd); log_setting("DataStorage_NandDir", Common::FS::GetUserPath(Common::FS::UserPath::NANDDir)); log_setting("DataStorage_SdmcDir", Common::FS::GetUserPath(Common::FS::UserPath::SDMCDir)); - log_setting("Debugging_UseGdbstub", values.use_gdbstub); - log_setting("Debugging_GdbstubPort", values.gdbstub_port); log_setting("Debugging_ProgramArgs", values.program_args); log_setting("Services_BCATBackend", values.bcat_backend); log_setting("Services_BCATBoxcatLocal", values.bcat_boxcat_local); |