Removed unneeded ToLower() call

This commit is contained in:
Aruki 2017-07-08 13:42:31 -06:00
parent cbdebd2f7e
commit 2ddba0cacc

View File

@ -100,10 +100,6 @@ void GenerateAssetNames(CGameProject *pProj)
TString NewDir = (HasCustomDir ? It->DirectoryPath() : pStore->DefaultResourceDirPath()); TString NewDir = (HasCustomDir ? It->DirectoryPath() : pStore->DefaultResourceDirPath());
TString NewName = (HasCustomName ? It->Name() : It->ID().ToString()); TString NewName = (HasCustomName ? It->Name() : It->ID().ToString());
if (!HasCustomDir && pProj->Game() >= eCorruptionProto)
NewDir = NewDir.ToLower();
It->Move(NewDir, NewName, true, true); It->Move(NewDir, NewName, true, true);
} }
#endif #endif