Merge pull request #10136 from malleoz/show-input-polls-on-m_ShowFrameCount

RenderBase: Show input count on m_ShowFrameCount
This commit is contained in:
Scott Mansell 2021-09-30 07:49:09 +13:00 committed by GitHub
commit a7224b299c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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