Skip to content

Commit

Permalink
custom levels: don't uppercase FR3 filename (#3496)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hat-Kid authored Apr 30, 2024
1 parent 8344ac6 commit cbf75a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions goalc/build_level/common/build_level.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit cbf75a9

Please sign in to comment.