summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index f293977623..e606a464e6 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -575,8 +575,9 @@ void Renderer::DrawDebugText()
ImGui::End();
}
- const bool show_movie_window =
- config.m_ShowFrameCount | config.m_ShowLag | config.m_ShowInputDisplay | config.m_ShowRTC;
+ const bool show_movie_window = config.m_ShowFrameCount | config.m_ShowLag |
+ config.m_ShowInputDisplay | config.m_ShowRTC |
+ config.m_ShowRerecord;
if (show_movie_window)
{
// Position under the FPS display.
@@ -606,6 +607,8 @@ void Renderer::DrawDebugText()
ImGui::TextUnformatted(Movie::GetInputDisplay().c_str());
if (SConfig::GetInstance().m_ShowRTC)
ImGui::TextUnformatted(Movie::GetRTCDisplay().c_str());
+ if (SConfig::GetInstance().m_ShowRerecord)
+ ImGui::TextUnformatted(Movie::GetRerecords().c_str());
}
ImGui::End();
}