diff options
| author | Scott Mansell <phiren@gmail.com> | 2021-09-30 07:49:09 +1300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-30 07:49:09 +1300 |
| commit | a7224b299c609a5d5ee803610f1fbedea5fb0a30 (patch) | |
| tree | 7ce39fda9ad63c9a70da96197680aca15991c230 /Source/Core/VideoCommon/RenderBase.cpp | |
| parent | a47b91e94631844875758ff651347c58dfa82f27 (diff) | |
| parent | 30dcac15fa3e07701684a0f35eb4ad636666e51f (diff) | |
Merge pull request #10136 from malleoz/show-input-polls-on-m_ShowFrameCount
RenderBase: Show input count on m_ShowFrameCount
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/RenderBase.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp index 22916816eb..6771df83a3 100644 --- a/Source/Core/VideoCommon/RenderBase.cpp +++ b/Source/Core/VideoCommon/RenderBase.cpp @@ -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()); |
