diff options
author | Gauvain "GovanifY" Roussel-Tarbouriech <gauvain@govanify.com> | 2020-02-23 21:33:49 +0100 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2020-03-17 11:18:13 +0100 |
commit | 38036eb1c8633d151c721992e085e1aca5658f9d (patch) | |
tree | d9866995796f24394134f4568f567343c89af288 /src/core/core.cpp | |
parent | e8ded20d2402e03fca2007204e42b62f11ec92c8 (diff) |
gdbstub: Ensure gdbstub doesn't drop packets crucial to initialization
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r-- | src/core/core.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 2185081262..d1bc9340de 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -166,7 +166,7 @@ struct System::Impl { service_manager = std::make_shared<Service::SM::ServiceManager>(); Service::Init(service_manager, system); - GDBStub::Init(); + GDBStub::DeferStart(); renderer = VideoCore::CreateRenderer(emu_window, system); if (!renderer->Init()) { |