diff options
author | Mai M <mathew1800@gmail.com> | 2022-06-01 00:19:49 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-01 00:19:49 -0400 |
commit | de2f2e5140eb85311e0fd844c580d6726adf7e03 (patch) | |
tree | 10f0e96a0689b2edb823f5833ff388ac9c645229 /src/common/settings.h | |
parent | 72b34650f9d11ff4bc72abc88799933da2445129 (diff) | |
parent | fb4b3c127f7c390358d7f4cadd2f58de116fec48 (diff) |
Merge pull request #8394 from liamwhite/debugger
core/debugger: Implement new GDB stub debugger
Diffstat (limited to 'src/common/settings.h')
-rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index e61d9cd7f..a7bbfb0da 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -601,7 +601,7 @@ struct Values { // Debugging bool record_frame_times; BasicSetting<bool> use_gdbstub{false, "use_gdbstub"}; - BasicSetting<u16> gdbstub_port{0, "gdbstub_port"}; + BasicSetting<u16> gdbstub_port{6543, "gdbstub_port"}; BasicSetting<std::string> program_args{std::string(), "program_args"}; BasicSetting<bool> dump_exefs{false, "dump_exefs"}; BasicSetting<bool> dump_nso{false, "dump_nso"}; |