From 215a93e9af9ce0c3b100bca0561e7f9e78507578 Mon Sep 17 00:00:00 2001 From: Robert MacGregor Date: Tue, 2 Nov 2021 17:36:22 -0400 Subject: [PATCH] * BugFix: Correction for compiling on x86 Unix devices. --- Engine/source/platformX86UNIX/x86UNIXFileio.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Engine/source/platformX86UNIX/x86UNIXFileio.cpp b/Engine/source/platformX86UNIX/x86UNIXFileio.cpp index 591b28f1c..d702d6417 100644 --- a/Engine/source/platformX86UNIX/x86UNIXFileio.cpp +++ b/Engine/source/platformX86UNIX/x86UNIXFileio.cpp @@ -76,6 +76,7 @@ extern int x86UNIXClose(int fd); extern ssize_t x86UNIXRead(int fd, void *buf, size_t nbytes); extern ssize_t x86UNIXWrite(int fd, const void *buf, size_t nbytes); + extern bool ResolvePathCaseInsensitive(char* pathName, S32 pathNameSize, bool requiredAbsolute); const int MaxPath = PATH_MAX;