mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 00:27:42 +00:00
Update fmtlib
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user