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.
This commit is contained in:
sowens99 2021-09-28 21:51:24 -04:00
parent 753a1595bf
commit ffaa149b96
1 changed files with 2 additions and 2 deletions

View File

@ -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())
{