From 1e3ce48024efbaba333caa92451762d5b3f2a1a9 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 26 Nov 2025 23:43:20 -0800 Subject: [PATCH 1/2] Fix compilation regression --- Source/Engine/Scripting/Internal/InternalCalls.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Engine/Scripting/Internal/InternalCalls.h b/Source/Engine/Scripting/Internal/InternalCalls.h index 81d86ea34..4535952ea 100644 --- a/Source/Engine/Scripting/Internal/InternalCalls.h +++ b/Source/Engine/Scripting/Internal/InternalCalls.h @@ -138,6 +138,7 @@ DLLIMPORT extern "C" MonoDomain* mono_domain_get(void); #else +#define MONO_THREAD_INFO_TYPE void #define MONO_ENTER_GC_SAFE #define MONO_EXIT_GC_SAFE #define MONO_ENTER_GC_SAFE_WITH_INFO(info) From a1999183f21855aa591b377607b6fac5596f32f2 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 27 Nov 2025 09:13:14 +0100 Subject: [PATCH 2/2] Fix compilation regression --- Source/Engine/Platform/Unix/UnixFileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/Platform/Unix/UnixFileSystem.cpp b/Source/Engine/Platform/Unix/UnixFileSystem.cpp index d85f60563..df854c138 100644 --- a/Source/Engine/Platform/Unix/UnixFileSystem.cpp +++ b/Source/Engine/Platform/Unix/UnixFileSystem.cpp @@ -367,7 +367,7 @@ bool UnixFileSystem::getFilesFromDirectoryTop(Array& results, const char if (S_ISREG(statEntry.st_mode) != 0) { // Validate with filter - if (FileSystem::PathFilterHelper(fullPath, searchPattern)) + if (FileSystemBase::PathFilterHelper(fullPath, searchPattern)) results.Add(String(fullPath)); } }