1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-03 06:24:32 +00:00

Fix particle & shot loading on linux (fix file name case)

This commit is contained in:
fgenesis 2012-03-12 03:13:34 +01:00
parent 4891fcc339
commit bd9648aa60
3 changed files with 8 additions and 5 deletions

View file

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