Make copying directory string more concise

merge-requests/60/head
lat9nq 2020-05-28 13:33:50 +07:00
parent 326403518d
commit f57cbd9f24
1 changed files with 1 additions and 2 deletions

@ -56,8 +56,7 @@ std::shared_ptr<VfsDirectory> FindSubdirectoryCaseless(const std::shared_ptr<Vfs
#else #else
const auto subdirs = dir->GetSubdirectories(); const auto subdirs = dir->GetSubdirectories();
for (const auto& subdir : subdirs) { for (const auto& subdir : subdirs) {
std::string dir_name = subdir->GetName(); std::string dir_name = Common::ToLower(subdir->GetName());
dir_name = Common::ToLower(dir_name);
if (dir_name == name) { if (dir_name == name) {
return subdir; return subdir;
} }