diff options
| author | sowens99 <seanowens@comcast.net> | 2024-04-26 20:06:57 -0400 |
|---|---|---|
| committer | sowens99 <seanowens@comcast.net> | 2024-04-26 20:06:57 -0400 |
| commit | 3ab1334cd9077010202762357e15e2a04dc8114e (patch) | |
| tree | bc90a9383ef99f36916254227997ff56b23de913 /Source/Core/VideoCommon/OnScreenUI.cpp | |
| parent | e69486d2cb4e3e01dd622d760350b26d6cbd59f5 (diff) | |
VideoCommon: Only show input count when recording
Diffstat (limited to 'Source/Core/VideoCommon/OnScreenUI.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/OnScreenUI.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index dce1c2146f..4d0213a1a4 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -296,7 +296,8 @@ void OnScreenUI::DrawDebugText() else if (Config::Get(Config::MAIN_SHOW_FRAME_COUNT)) { ImGui::Text("Frame: %" PRIu64, movie.GetCurrentFrame()); - ImGui::Text("Input: %" PRIu64, movie.GetCurrentInputCount()); + if (movie.IsRecordingInput()) + ImGui::Text("Input: %" PRIu64, movie.GetCurrentInputCount()); } if (Config::Get(Config::MAIN_SHOW_LAG)) ImGui::Text("Lag: %" PRIu64 "\n", movie.GetCurrentLagCount()); |
