diff options
| author | 2015-09-02 08:56:38 -0400 | |
|---|---|---|
| committer | 2015-10-04 11:16:59 -0400 | |
| commit | 31dee93e849d79a91f280faf16941806e3cb3c6b (patch) | |
| tree | 22f64217b38dfa38b25a772f9fc5a9b025e1cbd6 /src/citra/citra.cpp | |
| parent | OS X build uploading: auto-confirm SSH host key (diff) | |
| download | yuzu-31dee93e849d79a91f280faf16941806e3cb3c6b.tar.gz yuzu-31dee93e849d79a91f280faf16941806e3cb3c6b.tar.xz yuzu-31dee93e849d79a91f280faf16941806e3cb3c6b.zip | |
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 @@ | |||
| 30 | 30 | ||
| 31 | #include "video_core/video_core.h" | 31 | #include "video_core/video_core.h" |
| 32 | 32 | ||
| 33 | #include "core/gdbstub/gdbstub.h" | ||
| 34 | |||
| 33 | 35 | ||
| 34 | static void PrintHelp() | 36 | static void PrintHelp() |
| 35 | { | 37 | { |
| @@ -72,6 +74,7 @@ int main(int argc, char **argv) { | |||
| 72 | Config config; | 74 | Config config; |
| 73 | log_filter.ParseFilterString(Settings::values.log_filter); | 75 | log_filter.ParseFilterString(Settings::values.log_filter); |
| 74 | 76 | ||
| 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 | ||