fix lazy mistake

This commit is contained in:
Garrett Smith 2026-01-23 16:26:28 -08:00
parent 7b9b1722b9
commit 584494be42

View file

@ -15,7 +15,7 @@ inline std::filesystem::path pfs_header_path() {
}
inline std::filesystem::path pfs_file_path(size_t file_no) {
const auto filename = "controllerpak_file_" + std::to_string(file_no) + ".bin", file_no);
const auto filename = "controllerpak_file_" + std::to_string(file_no) + ".bin";
return ultramodern::get_save_base_path() / filename;
}