Avoid making filenames lower case in windows

It breaks fallback translation (zh_TW to zh_tw) which tinygettext
uses zh_TW to detect
This commit is contained in:
Benau 2020-12-04 11:08:20 +08:00
parent ad7751f952
commit 5500b4dcc9

View File

@ -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;