Skip to content
Permalink
Browse files
Merge pull request #8912 from JosJuice/fix-profiler
VideoCommon: Show profiler output again
  • Loading branch information
degasus committed Jun 29, 2020
2 parents 4095fb6 + 81d399a commit 5792881
Showing 1 changed file with 4 additions and 0 deletions.
@@ -557,6 +557,10 @@ void Renderer::DrawDebugText()

if (g_ActiveConfig.bOverlayProjStats)
g_stats.DisplayProj();

const std::string profile_output = Common::Profiler::ToString();
if (!profile_output.empty())
ImGui::TextUnformatted(profile_output.c_str());
}

float Renderer::CalculateDrawAspectRatio() const

0 comments on commit 5792881

Please sign in to comment.