From 767a3fafd9fca04f18b81b5bb088ccaaad4d6306 Mon Sep 17 00:00:00 2001 From: Brian Fiete Date: Tue, 3 Sep 2019 05:06:03 -0700 Subject: [PATCH] Added extra case for DbgBreakPoint check for Win32 --- IDEHelper/WinDebugger.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IDEHelper/WinDebugger.cpp b/IDEHelper/WinDebugger.cpp index 9b0b8a99..1d606c89 100644 --- a/IDEHelper/WinDebugger.cpp +++ b/IDEHelper/WinDebugger.cpp @@ -4654,7 +4654,7 @@ void WinDebugger::CheckNonDebuggerBreak() DbgModule* dbgModule; if (mDebugTarget->FindSymbolAt(pcAddress, &symbol, &offset, &dbgModule)) { - if ((symbol == "DbgBreakPoint") || (symbol == "RtlUserThreadStart@8")) + if ((symbol == "DbgBreakPoint") || (symbol == "RtlUserThreadStart") || (symbol == "RtlUserThreadStart@8")) { showMainThread = true; }