diff --git a/plugins/GSdx/GSRenderer.cpp b/plugins/GSdx/GSRenderer.cpp index b65fe533f4..961575a589 100644 --- a/plugins/GSdx/GSRenderer.cpp +++ b/plugins/GSdx/GSRenderer.cpp @@ -358,7 +358,7 @@ void GSRenderer::VSync(int field) s = format( "%lld | %d x %d | %.2f fps (%d%%) | %s - %s | %s | %d S/%d P/%d D | %d%% CPU | %.2f | %.2f", - m_perfmon.GetFrame(), r.width(), r.height(), fps, (int)(100.0 * fps / GetFPS()), + m_perfmon.GetFrame(), r.width(), r.height(), fps, (int)(100.0 * fps / GetTvRefreshRate()), s2.c_str(), theApp.m_gs_interlace[m_interlace].name.c_str(), theApp.m_gs_aspectratio[m_aspectratio].name.c_str(), @@ -533,7 +533,7 @@ bool GSRenderer::MakeSnapshot(const string& path) bool GSRenderer::BeginCapture() { - return m_capture.BeginCapture(GetFPS()); + return m_capture.BeginCapture(GetTvRefreshRate()); } void GSRenderer::EndCapture() diff --git a/plugins/GSdx/GSState.cpp b/plugins/GSdx/GSState.cpp index 8c00945f68..8228314143 100644 --- a/plugins/GSdx/GSState.cpp +++ b/plugins/GSdx/GSState.cpp @@ -465,11 +465,9 @@ bool GSState::IsEnabled(int i) return false; } -float GSState::GetFPS() +float GSState::GetTvRefreshRate() { - float base_rate = ((m_regs->SMODE1.CMOD & 1) ? 25 : (30/1.001f)); - - return base_rate * (m_regs->SMODE2.INT ? 2 : 1); + return (m_regs->SMODE1.CMOD & 1) ? 50 : (60/1.001f); } // GIFPackedRegHandler* diff --git a/plugins/GSdx/GSState.h b/plugins/GSdx/GSState.h index 6a9954464a..1005987c34 100644 --- a/plugins/GSdx/GSState.h +++ b/plugins/GSdx/GSState.h @@ -225,7 +225,7 @@ public: bool IsEnabled(int i); - float GetFPS(); + float GetTvRefreshRate(); virtual void Reset(); virtual void Flush();