2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 00:27:42 +00:00

Update fmtlib

This commit is contained in:
Jack Andersen
2020-04-11 12:51:39 -10:00
parent 7055b6983f
commit 5b4441ac36
156 changed files with 786 additions and 777 deletions

View File

@@ -15,9 +15,9 @@ CAssetId::CAssetId(CInputStream& in) {
else if (g_Main->GetExpectedIdSize() == sizeof(u64))
Assign(in.readUint64Big());
else
Log.report(logvisor::Fatal, fmt("Unsupported id length {}"), g_Main->GetExpectedIdSize());
Log.report(logvisor::Fatal, FMT_STRING("Unsupported id length {}"), g_Main->GetExpectedIdSize());
} else
Log.report(logvisor::Fatal, fmt("Input constructor called before runtime Main entered!"));
Log.report(logvisor::Fatal, FMT_STRING("Input constructor called before runtime Main entered!"));
}
void CAssetId::PutTo(COutputStream& out) {
@@ -27,9 +27,9 @@ void CAssetId::PutTo(COutputStream& out) {
else if (g_Main->GetExpectedIdSize() == sizeof(u64))
out.writeUint64Big(id);
else
Log.report(logvisor::Fatal, fmt("Unsupported id length {}"), g_Main->GetExpectedIdSize());
Log.report(logvisor::Fatal, FMT_STRING("Unsupported id length {}"), g_Main->GetExpectedIdSize());
} else
Log.report(logvisor::Fatal, fmt("PutTo called before runtime Main entered!"));
Log.report(logvisor::Fatal, FMT_STRING("PutTo called before runtime Main entered!"));
}
} // namespace urde