mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-18 01:37:00 +00:00
Update fmt version to 9.1.0 (#177)
This commit is contained in:
parent
f2ec0b4083
commit
0ed4fdcd78
16 changed files with 56 additions and 33 deletions
|
|
@ -35,7 +35,7 @@ public:
|
|||
void appendFmt(const char* format_str, Args... args)
|
||||
{
|
||||
char* buf = (char*)(m_strBuffer + m_offsetEnd);
|
||||
char* r = fmt::format_to(buf, format_str, std::forward<Args>(args)...);
|
||||
char* r = fmt::format_to(buf, fmt::runtime(format_str), std::forward<Args>(args)...);
|
||||
cemu_assert_debug(r <= (char*)(m_strBuffer + N));
|
||||
m_offsetEnd += (uint32)(r - buf);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue