diff options
| author | JMC47 <JMC4789@gmail.com> | 2025-03-28 18:43:57 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-28 18:43:57 -0400 |
| commit | 932b4abdcfab9bbef0583f2d820b0139afa94221 (patch) | |
| tree | 18f0567f7d2414386d74dc60ffcc6cdddd95e2dc /Source/Core/VideoBackends/Software/SWEfbInterface.cpp | |
| parent | 7d794897c4043b9ee8b278340cfeff02923512f4 (diff) | |
| parent | e351f03cdf9371f63423fdda1ff168e0daff6966 (diff) | |
Merge pull request #13457 from jordan-woyak/efb-access-fix
VideoCommon: Fix out-of-bounds and disabled EFB access.
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWEfbInterface.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Software/SWEfbInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/SWEfbInterface.cpp b/Source/Core/VideoBackends/Software/SWEfbInterface.cpp index d269e8435a..1bfc00b938 100644 --- a/Source/Core/VideoBackends/Software/SWEfbInterface.cpp +++ b/Source/Core/VideoBackends/Software/SWEfbInterface.cpp @@ -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); } |
