diff options
author | Tony Wasserka <NeoBrainX@gmail.com> | 2014-10-25 18:02:26 +0200 |
---|---|---|
committer | Tony Wasserka <NeoBrainX@gmail.com> | 2014-12-09 16:37:34 +0100 |
commit | 2c71ec70527abd091d69f1fdd30aaf95d815214a (patch) | |
tree | d0e1f48b048f6d3ef801d0562bfcfe0fa11de6f1 /src/citra_qt/main.cpp | |
parent | 706f9c5574f74b018958477813495dd6e15bd00d (diff) |
Pica/DebugUtils: Add breakpoint functionality.
Diffstat (limited to 'src/citra_qt/main.cpp')
-rw-r--r-- | src/citra_qt/main.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 0701decefa..869826e615 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -36,6 +36,8 @@ GMainWindow::GMainWindow() { LogManager::Init(); + Pica::g_debug_context = Pica::DebugContext::Construct(); + Config config; if (!Settings::values.enable_log) @@ -133,6 +135,8 @@ GMainWindow::~GMainWindow() // will get automatically deleted otherwise if (render_window->parent() == nullptr) delete render_window; + + Pica::g_debug_context.reset(); } void GMainWindow::BootGame(std::string filename) |