@@ -860,8 +860,7 @@ void CLocatorAPI::_initialize(u32 flags, pcstr target_folder, pcstr fs_name)
860860 _GetItem (temp, 5 , capt, _delimiter);
861861 xr_strlwr (id);
862862
863- xr_strlwr (root);
864- lp_add = cnt >= 4 ? xr_strlwr (add) : 0 ;
863+ lp_add = cnt >= 4 ? add : 0 ;
865864 lp_def = cnt >= 5 ? def : 0 ;
866865 lp_capt = cnt >= 6 ? capt : 0 ;
867866
@@ -1465,7 +1464,6 @@ IWriter* CLocatorAPI::w_open(pcstr path, pcstr _fname)
14651464{
14661465 string_path fname;
14671466 xr_strcpy (fname, _fname);
1468- xr_strlwr (fname); // ,".$");
14691467 if (path && path[0 ])
14701468 update_path (fname, path, fname);
14711469 CFileWriter* W = new CFileWriter (fname, false );
@@ -1480,7 +1478,6 @@ IWriter* CLocatorAPI::w_open_ex(pcstr path, pcstr _fname)
14801478{
14811479 string_path fname;
14821480 xr_strcpy (fname, _fname);
1483- xr_strlwr (fname); // ,".$");
14841481 if (path && path[0 ])
14851482 update_path (fname, path, fname);
14861483 CFileWriter* W = new CFileWriter (fname, true );
@@ -1642,7 +1639,7 @@ void CLocatorAPI::file_rename(pcstr src, pcstr dest, bool overwrite)
16421639 xr_free (str);
16431640 m_files.erase (S);
16441641 // insert updated item
1645- new_desc.name = xr_strlwr ( xr_strdup (dest) );
1642+ new_desc.name = xr_strdup (dest);
16461643 m_files.insert (new_desc);
16471644
16481645 // physically rename file
0 commit comments