Merge pull request #13457 from jordan-woyak/efb-access-fix

VideoCommon: Fix out-of-bounds and disabled EFB access.
This commit is contained in:
JMC47
2025-03-28 18:43:57 -04:00
committed by GitHub
7 changed files with 55 additions and 29 deletions

View File

@ -742,7 +742,7 @@ u32 SWEFBInterface::PeekColorInternal(u16 x, u16 y)
return value;
}
u32 SWEFBInterface::PeekDepth(u16 x, u16 y)
u32 SWEFBInterface::PeekDepthInternal(u16 x, u16 y)
{
return EfbInterface::GetDepth(x, y);
}