From 0a60bd1d3bcaadef8746dde6adbb2bba64dc8b29 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 28 Sep 2021 20:36:07 +0200 Subject: [PATCH] Fix capturing stack trace from user native assemblies on Windows --- Source/Engine/Platform/Windows/WindowsPlatform.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Engine/Platform/Windows/WindowsPlatform.cpp b/Source/Engine/Platform/Windows/WindowsPlatform.cpp index ccd514c11..f4b9e1295 100644 --- a/Source/Engine/Platform/Windows/WindowsPlatform.cpp +++ b/Source/Engine/Platform/Windows/WindowsPlatform.cpp @@ -1221,6 +1221,7 @@ void* WindowsPlatform::LoadLibrary(const Char* filename) if (folder.HasChars() && !SymbolsPath.Contains(folder)) { SymbolsPath.Add(folder); + SymbolsPath.Last().Replace('/', '\\'); OnSymbolsPathModified(); } DbgHelpUnlock();