From 97fa395a3bdd292f8a26ef80ff8e2f390b523ff9 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 28 Feb 2025 21:44:22 +0300 Subject: [PATCH] engine: platform: win32: fix build by restoring previous win32 header inclusion order --- engine/platform/win32/crash_win.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/engine/platform/win32/crash_win.c b/engine/platform/win32/crash_win.c index d33deb8f..4f60f817 100644 --- a/engine/platform/win32/crash_win.c +++ b/engine/platform/win32/crash_win.c @@ -13,17 +13,17 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */ -#include -#include -#include -#include - #include "platform/platform.h" #include "input.h" #define DBGHELP 1 // we always enable dbghelp.dll on Windows targets #if DBGHELP +#include +#include +#include +#include + #ifndef XASH_SDL typedef ULONG_PTR DWORD_PTR, *PDWORD_PTR; #endif