diff --git a/BBGE/Base.cpp b/BBGE/Base.cpp index ebe3257..132f049 100644 --- a/BBGE/Base.cpp +++ b/BBGE/Base.cpp @@ -555,8 +555,8 @@ void forEachFile(std::string path, std::string type, void callback(const std::st { if (path.empty()) return; - stringToLowerUserData(path); - stringToLower(type); + path = core->adjustFilenameCase(path); + stringToLower(type); //HACK: MAC: debugLog("forEachFile - path: " + path + " type: " + type);