mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 15:05:59 +00:00
Fix UTF-8 strings in perf_meter files
This commit is contained in:
parent
2b52b4a749
commit
89d9813a45
2 changed files with 2 additions and 2 deletions
|
|
@ -19,7 +19,7 @@ void perf_stat_base::print(const char* name) noexcept
|
|||
{
|
||||
if (u64 count = m_log[i + 1].load())
|
||||
{
|
||||
perf_log.notice("Perf stats for %s: events < %.3fµs: %u", name, std::pow(2., i) / 1000., count);
|
||||
perf_log.notice(u8"Perf stats for %s: events < %.3fµs: %u", name, std::pow(2., i) / 1000., count);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue