From a9d45d837fbda93558bb49de23be95e9e05df321 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 30 Aug 2025 11:21:09 +0200 Subject: [PATCH] fix: Missing pthread include --- main/gui/source/crash_handlers.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main/gui/source/crash_handlers.cpp b/main/gui/source/crash_handlers.cpp index f7184890c..567e10950 100644 --- a/main/gui/source/crash_handlers.cpp +++ b/main/gui/source/crash_handlers.cpp @@ -24,6 +24,10 @@ #if defined (OS_WINDOWS) #include + + #if !defined(_MSC_VER) + #include + #endif #elif defined (OS_MACOS) #include #endif