Fix UTF-8 strings in perf_meter files

This commit is contained in:
Nekotekina 2020-10-24 04:21:33 +03:00
parent 2b52b4a749
commit 89d9813a45
2 changed files with 2 additions and 2 deletions

View file

@ -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);
}
}