fix(renderer): Fix renderer callbacks called for nothing. (#2073)

This commit is contained in:
Quentin
2023-09-02 12:46:40 +02:00
committed by GitHub
parent 241f3cbe58
commit 1ac4cfa3d8
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ namespace big
ImGui::Separator();
if (g.window.ingame_overlay.show_fps)
ImGui::Text("%.0f FPS", ImGui::GetIO().Framerate / 2);
ImGui::Text("%.0f FPS", ImGui::GetIO().Framerate);
if (CNetworkPlayerMgr* network_player_mgr = gta_util::get_network_player_mgr(); g.window.ingame_overlay.show_players)
ImGui::Text(std::format("Players: {}/{}", network_player_mgr->m_player_count, network_player_mgr->m_player_limit)