diff options
| author | sowens99 <seanowens@comcast.net> | 2021-09-28 21:51:24 -0400 |
|---|---|---|
| committer | sowens99 <seanowens@comcast.net> | 2021-09-28 21:51:24 -0400 |
| commit | ffaa149b968b7e9a946cd6f694aea7112e2556a9 (patch) | |
| tree | dd4ad2582c22dadadfd271edc5dd7a5d9a7909a6 /Source/Core | |
| parent | 753a1595bfe2db1cd4d8312e992901fc3e4da5d8 (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.cpp | 4 |
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()) { |
