diff options
| author | polaris- <nagatospam@gmail.com> | 2015-09-02 08:56:38 -0400 |
|---|---|---|
| committer | polaris- <nagatospam@gmail.com> | 2015-09-19 22:28:02 -0400 |
| commit | 5114d756470ff70b0ce8c6f3ff98000462aaef35 (patch) | |
| tree | 8d4a5d94b02cb2499153922542af91aaf21837bb /src/citra/citra.cpp | |
| parent | f7b4f44adfb3d27c5ef5949115accf5caa8354f3 (diff) | |
Implement gdbstub
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..b36865395 100644 --- a/src/citra/citra.cpp +++ b/src/citra/citra.cpp @@ -30,6 +30,8 @@ #include "video_core/video_core.h" +#include "core/gdbstub/gdbstub.h" + static void PrintHelp() { @@ -72,6 +74,7 @@ int main(int argc, char **argv) { Config config; log_filter.ParseFilterString(Settings::values.log_filter); + GDBStub::SetServerPort(static_cast<u32>(Settings::values.gdbstub_port)); EmuWindow_GLFW* emu_window = new EmuWindow_GLFW; |
