From 83884aa71f21d953f0d13fe25a39823ad69bfb96 Mon Sep 17 00:00:00 2001 From: Valentin Radu Date: Thu, 17 Feb 2022 23:02:34 +0200 Subject: [PATCH] Main: Include `math.h` so that `sqrt` works in Debug builds as well --- ExplorerPatcher/dllmain.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ExplorerPatcher/dllmain.c b/ExplorerPatcher/dllmain.c index fd8f5a7..4636d9f 100644 --- a/ExplorerPatcher/dllmain.c +++ b/ExplorerPatcher/dllmain.c @@ -23,6 +23,7 @@ #pragma comment(lib, "Dbghelp.lib") #include #include +#include #ifdef _WIN64 #include #endif