mirror of
https://github.com/N64Recomp/N64Recomp.git
synced 2025-05-14 08:12:19 +00:00
Fixed path for additional files
This commit is contained in:
parent
3dfd9814de
commit
9f9d0b532d
1 changed files with 1 additions and 1 deletions
|
@ -978,7 +978,7 @@ bool create_mod_zip(const std::filesystem::path& output_dir, const ModConfig& co
|
|||
temp_zip_path.string(), (output_dir / symbol_filename).string(), (output_dir / binary_filename).string(), (output_dir / manifest_filename).string());
|
||||
|
||||
for (const auto& cur_file : config.inputs.additional_files) {
|
||||
command_string += fmt::format(",\"{}\"", cur_file.string());
|
||||
command_string += fmt::format(",'{}'", cur_file.string());
|
||||
}
|
||||
|
||||
STARTUPINFOA si{};
|
||||
|
|
Loading…
Add table
Reference in a new issue