mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-01 16:05:07 +01:00
Fix fmt crash from deprecated percent specifier (#5616)
* Fix fmt crash from deprecated percent specifier * ...clang format
This commit is contained in:
parent
4f058c04e8
commit
3fa12d43f5
@ -289,9 +289,10 @@ void EmuWindow_SDL2::PollEvents() {
|
|||||||
const u32 current_time = SDL_GetTicks();
|
const u32 current_time = SDL_GetTicks();
|
||||||
if (current_time > last_time + 2000) {
|
if (current_time > last_time + 2000) {
|
||||||
const auto results = Core::System::GetInstance().GetAndResetPerfStats();
|
const auto results = Core::System::GetInstance().GetAndResetPerfStats();
|
||||||
const auto title = fmt::format(
|
const auto title =
|
||||||
"Citra {} | {}-{} | FPS: {:.0f} ({:.0%})", Common::g_build_fullname,
|
fmt::format("Citra {} | {}-{} | FPS: {:.0f} ({:.0f}%)", Common::g_build_fullname,
|
||||||
Common::g_scm_branch, Common::g_scm_desc, results.game_fps, results.emulation_speed);
|
Common::g_scm_branch, Common::g_scm_desc, results.game_fps,
|
||||||
|
results.emulation_speed * 100.0f);
|
||||||
SDL_SetWindowTitle(render_window, title.c_str());
|
SDL_SetWindowTitle(render_window, title.c_str());
|
||||||
last_time = current_time;
|
last_time = current_time;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user