diff options
| author | 2015-09-02 08:56:38 -0400 | |
|---|---|---|
| committer | 2015-09-19 22:28:02 -0400 | |
| commit | 5114d756470ff70b0ce8c6f3ff98000462aaef35 (patch) | |
| tree | 8d4a5d94b02cb2499153922542af91aaf21837bb /src/citra/citra.cpp | |
| parent | Merge pull request #1097 from yuriks/cfg-blocks (diff) | |
| download | yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar.gz yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.tar.xz yuzu-5114d756470ff70b0ce8c6f3ff98000462aaef35.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 | ||