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/Null/NullGfx.cpp | |
| parent | 1981f222284448cc8a69d970e1f8569dacec684e (diff) | |
VideoCommon: Fix out-of-bounds and disabled EFB access.
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullGfx.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/Null/NullGfx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Null/NullGfx.cpp b/Source/Core/VideoBackends/Null/NullGfx.cpp index ab60339d0b..61822d3c83 100644 --- a/Source/Core/VideoBackends/Null/NullGfx.cpp +++ b/Source/Core/VideoBackends/Null/NullGfx.cpp @@ -108,7 +108,7 @@ u32 NullEFBInterface::PeekColorInternal(u16 x, u16 y) return 0; } -u32 NullEFBInterface::PeekDepth(u16 x, u16 y) +u32 NullEFBInterface::PeekDepthInternal(u16 x, u16 y) { return 0; } |
