From 5500b4dcc9f1484cbe9a629cbd2c215939fecfcf Mon Sep 17 00:00:00 2001 From: Benau Date: Fri, 4 Dec 2020 11:08:20 +0800 Subject: [PATCH] Avoid making filenames lower case in windows It breaks fallback translation (zh_TW to zh_tw) which tinygettext uses zh_TW to detect --- lib/irrlicht/source/Irrlicht/CFileSystem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/irrlicht/source/Irrlicht/CFileSystem.cpp b/lib/irrlicht/source/Irrlicht/CFileSystem.cpp index 499e32413..953596460 100644 --- a/lib/irrlicht/source/Irrlicht/CFileSystem.cpp +++ b/lib/irrlicht/source/Irrlicht/CFileSystem.cpp @@ -816,7 +816,7 @@ IFileList* CFileSystem::createFileList(const io::path& directory) #ifdef _IRR_WINDOWS_API_ #if !defined ( _WIN32_WCE ) - r = new CFileList(Path, true, false); + r = new CFileList(Path, false, false); intptr_t hFile;