Skip to content
Permalink
Browse files
Merge pull request #10136 from malleoz/show-input-polls-on-m_ShowFram…
…eCount

RenderBase: Show input count on m_ShowFrameCount
  • Loading branch information
phire committed Sep 29, 2021
2 parents a47b91e + 30dcac1 commit a7224b2
Showing 1 changed file with 1 addition and 0 deletions.
@@ -569,6 +569,7 @@ void Renderer::DrawDebugText()
else if (config.m_ShowFrameCount)
{
ImGui::Text("Frame: %" PRIu64, Movie::GetCurrentFrame());
ImGui::Text("Input: %" PRIu64, Movie::GetCurrentInputCount());
}
if (SConfig::GetInstance().m_ShowLag)
ImGui::Text("Lag: %" PRIu64 "\n", Movie::GetCurrentLagCount());

0 comments on commit a7224b2

Please sign in to comment.