Fix flickering in Real XFB mode. POFF for XFBBottomInfo appears to be connected to POFF for XFBTopInfo.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3584 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Nolan Check 2009-06-28 20:55:31 +00:00
parent 7f27cfc9d2
commit e341985003
1 changed files with 2 additions and 1 deletions

View File

@ -997,7 +997,8 @@ u8* GetXFBPointerTop()
u8* GetXFBPointerBottom()
{
if (m_XFBInfoBottom.POFF)
// POFF for XFB bottom is connected to POFF for XFB top
if (m_XFBInfoTop.POFF)
return Memory::GetPointer(m_XFBInfoBottom.FBB << 5);
else
return Memory::GetPointer(m_XFBInfoBottom.FBB);