mirror of
https://github.com/open-goal/jak-project
synced 2026-09-03 02:14:07 -04:00
custom levels: don't uppercase FR3 filename (#3496)
This commit is contained in:
@@ -11,8 +11,8 @@ void save_pc_data(const std::string& nickname,
|
||||
print_memory_usage(data, ser.get_save_result().second);
|
||||
lg::print("compressed: {} -> {} ({:.2f}%)\n", ser.get_save_result().second, compressed.size(),
|
||||
100.f * compressed.size() / ser.get_save_result().second);
|
||||
file_util::write_binary_file(fr3_output_dir / fmt::format("{}.fr3", str_util::to_upper(nickname)),
|
||||
compressed.data(), compressed.size());
|
||||
file_util::write_binary_file(fr3_output_dir / fmt::format("{}.fr3", nickname), compressed.data(),
|
||||
compressed.size());
|
||||
}
|
||||
|
||||
std::vector<std::string> get_build_level_deps(const std::string& input_file) {
|
||||
|
||||
Reference in New Issue
Block a user