Skip to content

Commit

Permalink
Update Application.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
xorz57 authored Feb 7, 2024
1 parent 7319d7d commit 3c1266a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Application.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ void Application::Run() {
ImGui::End();

ImGui::Begin("Statistics");
ImGui::Text("FPS : %3.f", 1.0f / deltaTime.asSeconds());
ImGui::Text("Tick Rate : %3.f", 1.0f / fixedDeltaTime.asSeconds());
ImGui::Text("Frame Rate : %3.f Hz", 1.0f / deltaTime.asSeconds());
ImGui::Text("Tick Rate : %3.f Hz", 1.0f / fixedDeltaTime.asSeconds());
ImGui::Text("Fixed Delta Time : %3d ms", fixedDeltaTime.asMilliseconds());
ImGui::Text("Delta Time : %3d ms", deltaTime.asMilliseconds());
ImGui::Text("Scaled Delta Time : %3d ms", scaledDeltaTime.asMilliseconds());
Expand Down

0 comments on commit 3c1266a

Please sign in to comment.