Fix compilation regression

This commit is contained in:
Wojtek Figat
2025-11-27 09:13:14 +01:00
parent 1e3ce48024
commit a1999183f2

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));
}
}