mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
Add Rerecord Count display
Simply shows Movie::s_rerecords in the ImGui Movie window
This commit is contained in:
parent
57d251c2f0
commit
e4fed7cce8
6 changed files with 24 additions and 2 deletions
|
@ -756,6 +756,12 @@ void MenuBar::AddMovieMenu()
|
|||
connect(pause_at_end, &QAction::toggled,
|
||||
[](bool value) { SConfig::GetInstance().m_PauseMovie = value; });
|
||||
|
||||
auto* rerecord_counter = movie_menu->addAction(tr("Show Rerecord Counter"));
|
||||
rerecord_counter->setCheckable(true);
|
||||
rerecord_counter->setChecked(SConfig::GetInstance().m_ShowRerecord);
|
||||
connect(rerecord_counter, &QAction::toggled,
|
||||
[](bool value) { SConfig::GetInstance().m_ShowRerecord = value; });
|
||||
|
||||
auto* lag_counter = movie_menu->addAction(tr("Show Lag Counter"));
|
||||
lag_counter->setCheckable(true);
|
||||
lag_counter->setChecked(SConfig::GetInstance().m_ShowLag);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue