diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-03-26 00:55:40 -0500 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-03-26 01:23:16 -0500 |
| commit | e351f03cdf9371f63423fdda1ff168e0daff6966 (patch) | |
| tree | 97bbde2e1b81c7eb5176d0953fce6340a193e709 /Source/Core/VideoBackends/Software/SWEfbInterface.cpp | |
| parent | 1981f222284448cc8a69d970e1f8569dacec684e (diff) | |
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 e534fab1c5..1e322a528e 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); } |
