Add Rerecord Count display

Simply shows Movie::s_rerecords in the ImGui Movie window
This commit is contained in:
sowens99
2021-11-29 23:03:36 -05:00
parent 57d251c2f0
commit e4fed7cce8
6 changed files with 24 additions and 2 deletions

View File

@ -202,6 +202,15 @@ std::string GetRTCDisplay()
return format_time.str();
}
// NOTE: GPU Thread
std::string GetRerecords()
{
if (IsMovieActive())
return fmt::format("Rerecords: {}", s_rerecords);
return "Rerecords: N/A";
}
void FrameUpdate()
{
s_currentFrame++;