Merge branch 'FlaxEngine:master' into late_join_fix

This commit is contained in:
VitaminCpp
2025-11-27 10:33:53 +01:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -367,7 +367,7 @@ bool UnixFileSystem::getFilesFromDirectoryTop(Array<String>& 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));
}
}

View File

@@ -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)