mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 15:19:42 -06:00
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:
@ -997,7 +997,8 @@ u8* GetXFBPointerTop()
|
|||||||
|
|
||||||
u8* GetXFBPointerBottom()
|
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);
|
return Memory::GetPointer(m_XFBInfoBottom.FBB << 5);
|
||||||
else
|
else
|
||||||
return Memory::GetPointer(m_XFBInfoBottom.FBB);
|
return Memory::GetPointer(m_XFBInfoBottom.FBB);
|
||||||
|
Reference in New Issue
Block a user