From ffaa149b968b7e9a946cd6f694aea7112e2556a9 Mon Sep 17 00:00:00 2001 From: sowens99 Date: Tue, 28 Sep 2021 21:51:24 -0400 Subject: [PATCH] Core: UpdateTitle with total framecount on recording playback Previously, only the number of total input polls would be shown in the window title when playing back a movie. This simply adds the VI / frame count total as well, which is a much more relevant number to look at while TASing. --- Source/Core/Core/Core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index 4e5fb461d7..96a3aab34e 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -928,9 +928,9 @@ void UpdateTitle(u32 ElapseTime) std::string SFPS; if (Movie::IsPlayingInput()) { - SFPS = fmt::format("Input: {}/{} - VI: {} - FPS: {:.0f} - VPS: {:.0f} - {:.0f}%", + SFPS = fmt::format("Input: {}/{} - VI: {}/{} - FPS: {:.0f} - VPS: {:.0f} - {:.0f}%", Movie::GetCurrentInputCount(), Movie::GetTotalInputCount(), - Movie::GetCurrentFrame(), FPS, VPS, Speed); + Movie::GetCurrentFrame(), Movie::GetTotalFrames(), FPS, VPS, Speed); } else if (Movie::IsRecordingInput()) {