Skip to content

Commit

Permalink
hopefully fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominicentek committed May 16, 2024
1 parent 65dfa34 commit 52fa770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/saturn/imgui/saturn_imgui_machinima.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ bool saturn_anim_scan_folder_inner(struct AnimEntry* parent, std::filesystem::pa
for (const auto& entry : std::filesystem::directory_iterator(path)) {
struct AnimEntry file;
file.display_name = entry.path().filename().string();
file.full_path = path / file.display_name;
file.full_path = (path / file.display_name).string();
bool do_add = true;
if (entry.is_directory()) do_add = saturn_anim_scan_folder_inner(&file, entry.path());
if (do_add) {
Expand Down

0 comments on commit 52fa770

Please sign in to comment.