mirror of
https://github.com/N64Recomp/N64ModernRuntime.git
synced 2026-02-02 19:56:13 +00:00
remove <format> usage
This commit is contained in:
parent
e47b14e418
commit
7b9b1722b9
1 changed files with 1 additions and 2 deletions
|
|
@ -1,5 +1,4 @@
|
|||
#include <filesystem>
|
||||
#include <format>
|
||||
#include <fstream>
|
||||
#include <ultramodern/save.hpp>
|
||||
#include <ultramodern/ultra64.h>
|
||||
|
|
@ -16,7 +15,7 @@ inline std::filesystem::path pfs_header_path() {
|
|||
}
|
||||
|
||||
inline std::filesystem::path pfs_file_path(size_t file_no) {
|
||||
const auto filename = std::format("controllerpak_file_{}.bin", file_no);
|
||||
const auto filename = "controllerpak_file_" + std::to_string(file_no) + ".bin", file_no);
|
||||
return ultramodern::get_save_base_path() / filename;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue