GSDX: Whoops sorry I mixed two conflicting ideas into one.

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4927 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gigaherz 2011-10-08 16:53:40 +00:00
parent 4d12e1954f
commit e08e540eb8
1 changed files with 2 additions and 1 deletions

View File

@ -385,7 +385,8 @@ bool GSState::IsEnabled(int i)
float GSState::GetFPS()
{
return ((m_regs->SMODE1.CMOD & 1) ? 25 : 29.97) * (m_regs->SMODE2.INT+1.0f);
float base_rate = ((m_regs->SMODE1.CMOD & 1) ? 25 : (30/1.001f));
return base_rate * (m_regs->SMODE2.INT ? 2 : 1);
}
// GIFPackedRegHandler*