From 4be752dd980a18b922939acbd92a12f599cedf04 Mon Sep 17 00:00:00 2001 From: Hamish Milne Date: Sat, 11 Apr 2020 19:47:31 +0100 Subject: [PATCH] Allow GDB debugging through loads --- src/core/core.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/core.cpp b/src/core/core.cpp index bdcee4ebd..8768ba3e6 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -494,10 +494,10 @@ void System::Shutdown(bool is_deserializing) { perf_stats->GetMeanFrametime()); // Shutdown emulation session - GDBStub::Shutdown(); VideoCore::Shutdown(); HW::Shutdown(); if (!is_deserializing) { + GDBStub::Shutdown(); perf_stats.reset(); cheat_engine.reset(); app_loader.reset();