summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorsowens99 <seanowens@comcast.net>2021-09-28 21:51:24 -0400
committersowens99 <seanowens@comcast.net>2021-09-28 21:51:24 -0400
commitffaa149b968b7e9a946cd6f694aea7112e2556a9 (patch)
treedd4ad2582c22dadadfd271edc5dd7a5d9a7909a6 /Source/Core
parent753a1595bfe2db1cd4d8312e992901fc3e4da5d8 (diff)
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.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/Core.cpp4
1 files 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())
{