Skip to content

Commit

Permalink
Fix building on MinGW
Browse files Browse the repository at this point in the history
  • Loading branch information
MehdiChinoune committed May 6, 2024
1 parent 43caeb9 commit 400278a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tile/tile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ std::vector<std::string> directoryList(const std::string& dir)
fs::directory_iterator end;
while (it != end)
{
files.push_back(untwine::fromNative(it->path()));
files.push_back(untwine::fromNative(it->path().string()));
it++;
}
}
Expand Down

0 comments on commit 400278a

Please sign in to comment.