Index: src/libchcore/TLocalFilesystemFind.cpp
===================================================================
diff -u -r5cdf499fad81a2227ebb7b6414179110f1df6101 -raf42be61996360060ae56ac01f9e22387daf09f9
--- src/libchcore/TLocalFilesystemFind.cpp	(.../TLocalFilesystemFind.cpp)	(revision 5cdf499fad81a2227ebb7b6414179110f1df6101)
+++ src/libchcore/TLocalFilesystemFind.cpp	(.../TLocalFilesystemFind.cpp)	(revision af42be61996360060ae56ac01f9e22387daf09f9)
@@ -46,7 +46,7 @@
 			bContinue = (FindNextFile(m_hFind, &wfd) != FALSE);
 		else
 		{
-			m_hFind = FindFirstFileEx(TLocalFilesystem::PrependPathExtensionIfNeeded(pathCurrent).ToString(), FindExInfoBasic, &wfd, FindExSearchNameMatch, nullptr, FIND_FIRST_EX_LARGE_FETCH);
+			m_hFind = FindFirstFileEx(TLocalFilesystem::PrependPathExtensionIfNeeded(pathCurrent).ToString(), FindExInfoStandard, &wfd, FindExSearchNameMatch, nullptr, 0);
 			bContinue = (m_hFind != INVALID_HANDLE_VALUE);
 		}
 		if (bContinue)