Skip to content

Commit

Permalink
Fix format source
Browse files Browse the repository at this point in the history
  • Loading branch information
Ravbug committed Jul 4, 2024
1 parent 0e08a65 commit 634dcfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/interface_derived.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ void MainFrameDerived::OpenProject(const project& p, const editor& e, TargetPlat
string cmd = "\"" + (e.path / e.name / executable).string() + "\" -projectpath \"" + p.path.string() + "\"";
if (plat != TargetPlatform::CurrentPlatform) {
auto str = PlatToStr(plat);
cmd += std::format(" -buildTarget {}", str);
cmd += fmt::format(" -buildTarget {}", str);
}
launch_process(cmd);
}
Expand Down

0 comments on commit 634dcfd

Please sign in to comment.