Skip to content

Commit

Permalink
Update Utils.h
Browse files Browse the repository at this point in the history
  • Loading branch information
Alphalaneous committed Dec 26, 2024
1 parent de57fa9 commit 17b990c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -207,11 +207,11 @@ namespace Utils {
filenameCache.clear();
for (std::string packPath : getActivePacks()) {
for (const auto& entry : std::filesystem::recursive_directory_iterator(packPath)) {
if (entry.is_regular_file()) {
/*if (entry.is_regular_file()) {
std::string pathStr = entry.path().string();
std::string subStr = pathStr.substr(packPath.size());
filenameCache[utils::string::replace(subStr, "\\", "/")] = true;
}
}*/
}
}
}
Expand Down

0 comments on commit 17b990c

Please sign in to comment.