From bd83a9683a0e5987e1dbc62b8808fefac6930a1f Mon Sep 17 00:00:00 2001 From: Xusheng Date: Sun, 8 Oct 2023 11:54:52 +0800 Subject: [PATCH] Fix non-TTD debugging on Windows not using PDB file name. Fix https://github.com/Vector35/debugger/issues/518 --- core/adapters/dbgengadapter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/adapters/dbgengadapter.h b/core/adapters/dbgengadapter.h index a678f43..dc20639 100644 --- a/core/adapters/dbgengadapter.h +++ b/core/adapters/dbgengadapter.h @@ -149,7 +149,7 @@ namespace BinaryNinjaDebugger { bool m_aboutToBeKilled = false; std::string m_pdbFileName {}; - bool m_usePDBFileName = false; + bool m_usePDBFileName = true; public: inline static ProcessCallbackInformation ProcessCallbackInfo {};