From a1999183f21855aa591b377607b6fac5596f32f2 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 27 Nov 2025 09:13:14 +0100 Subject: [PATCH] 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)); } }