Browse Source

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 years ago
parent
commit
f1ef2ea640
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/Urho3D/Core/MiniDump.cpp

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

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