mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 07:39:26 +01:00
VideoCommon: Only show input count when recording
This commit is contained in:
parent
e69486d2cb
commit
3ab1334cd9
@ -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());
|
||||
|
Loading…
x
Reference in New Issue
Block a user