diff --git a/renderdoc/os/win32/win32_callstack.cpp b/renderdoc/os/win32/win32_callstack.cpp index d0faf8c4a..56de82b28 100644 --- a/renderdoc/os/win32/win32_callstack.cpp +++ b/renderdoc/os/win32/win32_callstack.cpp @@ -142,6 +142,9 @@ static bool InitDbgHelp() // can't reliably co-exist with dbghelp already being used in the process if(GetModuleHandleA("dbghelp.dll") != NULL) { + RDCLOG( + "dbghelp.dll is already loaded, can't guarantee thread-safety against application use. " + "Callstack collection disabled"); ret = false; return false; }