diff options
Diffstat (limited to 'src/citra/citra.cpp')
| -rw-r--r-- | src/citra/citra.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp index 46f4a07c9..c96fc1374 100644 --- a/src/citra/citra.cpp +++ b/src/citra/citra.cpp | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | #include "core/settings.h" | 23 | #include "core/settings.h" |
| 24 | #include "core/system.h" | 24 | #include "core/system.h" |
| 25 | #include "core/core.h" | 25 | #include "core/core.h" |
| 26 | #include "core/gdbstub/gdbstub.h" | ||
| 26 | #include "core/loader/loader.h" | 27 | #include "core/loader/loader.h" |
| 27 | 28 | ||
| 28 | #include "citra/config.h" | 29 | #include "citra/config.h" |
| @@ -72,6 +73,8 @@ int main(int argc, char **argv) { | |||
| 72 | Config config; | 73 | Config config; |
| 73 | log_filter.ParseFilterString(Settings::values.log_filter); | 74 | log_filter.ParseFilterString(Settings::values.log_filter); |
| 74 | 75 | ||
| 76 | GDBStub::ToggleServer(Settings::values.use_gdbstub); | ||
| 77 | GDBStub::SetServerPort(static_cast<u32>(Settings::values.gdbstub_port)); | ||
| 75 | 78 | ||
| 76 | EmuWindow_GLFW* emu_window = new EmuWindow_GLFW; | 79 | EmuWindow_GLFW* emu_window = new EmuWindow_GLFW; |
| 77 | 80 | ||