From f81f08e5bffb35a355686d52944cca9f6f025e56 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Tue, 7 Oct 2025 16:06:04 +0200 Subject: [PATCH] [Windows] Fix MinGW build `file_access.h` was removed from the include hierarchy and wasn't caught by CI as it only occurs with MinGW builds --- platform/windows/crash_handler_windows_signal.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/platform/windows/crash_handler_windows_signal.cpp b/platform/windows/crash_handler_windows_signal.cpp index d399e1a703c..9622f3c2bf6 100644 --- a/platform/windows/crash_handler_windows_signal.cpp +++ b/platform/windows/crash_handler_windows_signal.cpp @@ -31,6 +31,7 @@ #include "crash_handler_windows.h" #include "core/config/project_settings.h" +#include "core/io/file_access.h" #include "core/object/script_language.h" #include "core/os/main_loop.h" #include "core/os/os.h"