2
0
Эх сурвалжийг харах

Don't define WriteMiniDump when URHO3D_MINIDUMPS is not defined

dbghelp not linking, when URHO3D_MINIDUMPS not defined, so MiniDumpWriteDump() used in WriteMiniDump() is not implemented
1vanK 3 жил өмнө
parent
commit
f1ef2ea640

+ 1 - 1
Source/Urho3D/Core/MiniDump.cpp

@@ -1,7 +1,7 @@
 // Copyright (c) 2008-2022 the Urho3D project
 // Copyright (c) 2008-2022 the Urho3D project
 // License: MIT
 // License: MIT
 
 
-#if defined(_MSC_VER)
+#if defined(_MSC_VER) && defined(URHO3D_MINIDUMPS)
 
 
 #include "../Precompiled.h"
 #include "../Precompiled.h"