mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
4d12e1954f
commit
e08e540eb8
|
@ -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*
|
||||
|
|
Loading…
Reference in New Issue