diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-09-29 09:43:03 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-09-29 09:43:03 -0400 |
| commit | bf23fcfc1fc838fd7ee8dc75dce46fbd7f432945 (patch) | |
| tree | 5676d44930c33c77757fea6f577b1d60f32508e1 /Source/Core/VideoCommon/RenderBase.cpp | |
| parent | 6a27f1bbf6422f898f3478e7d6edbf1fdba97c39 (diff) | |
FPSCounter: Don't provide direct access to m_fps
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/RenderBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp index 55a6cb8760..a35e3fe94e 100644 --- a/Source/Core/VideoCommon/RenderBase.cpp +++ b/Source/Core/VideoCommon/RenderBase.cpp @@ -295,7 +295,7 @@ void Renderer::DrawDebugText() if (g_ActiveConfig.bShowFPS || SConfig::GetInstance().m_ShowFrameCount) { if (g_ActiveConfig.bShowFPS) - final_cyan += StringFromFormat("FPS: %d", g_renderer->m_fps_counter.m_fps); + final_cyan += StringFromFormat("FPS: %u", g_renderer->m_fps_counter.GetFPS()); if (g_ActiveConfig.bShowFPS && SConfig::GetInstance().m_ShowFrameCount) final_cyan += " - "; |
