mirror of
https://github.com/hedge-dev/XenosRecomp.git
synced 2025-12-19 22:42:30 +00:00
Add Recursive File Listing
Changed the iterator to use recursive directory iterator
This commit is contained in:
parent
b635e5061f
commit
35491febfc
1 changed files with 1 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ int main(int argc, char** argv)
|
|||
std::vector<std::unique_ptr<uint8_t[]>> files;
|
||||
std::map<XXH64_hash_t, RecompiledShader> shaders;
|
||||
|
||||
for (auto& file : std::filesystem::directory_iterator(input))
|
||||
for (auto& file : std::filesystem::recursive_directory_iterator(input))
|
||||
{
|
||||
if (std::filesystem::is_directory(file))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue