From bce15428d52475f2ec01a5a786601d3eeec90fee Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 12 Oct 2020 20:01:40 +0200 Subject: [PATCH] - for Unix-like systems, check added resources for lower and uppercase variants if the specified one cannot be found. --- source/common/utility/findfile.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/source/common/utility/findfile.cpp b/source/common/utility/findfile.cpp index 332f0db88..1d3605851 100644 --- a/source/common/utility/findfile.cpp +++ b/source/common/utility/findfile.cpp @@ -203,6 +203,24 @@ bool D_AddFile(TArray& wadfiles, const char* file, bool check, int posi { return false; } +#ifdef __unix__ + // Test case sensitively, pure lowercase and pure uppercase. + FString checks = file; + struct stat info; + bool res = stat(file, &info) == 0; + if (!res) + { + checks.ToLower(); + res = stat(checks, &info) == 0; + if (!res) + { + checks.ToUpper(); + res = stat(checks, &info) == 0; + if (!res) checks = file; + } + } + file = checks; +#endif if (check && !DirEntryExists(file)) {