summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/NullGfx.cpp
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2025-03-28 18:43:57 -0400
committerGitHub <noreply@github.com>2025-03-28 18:43:57 -0400
commit932b4abdcfab9bbef0583f2d820b0139afa94221 (patch)
tree18f0567f7d2414386d74dc60ffcc6cdddd95e2dc /Source/Core/VideoBackends/Null/NullGfx.cpp
parent7d794897c4043b9ee8b278340cfeff02923512f4 (diff)
parente351f03cdf9371f63423fdda1ff168e0daff6966 (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/Null/NullGfx.cpp')
-rw-r--r--Source/Core/VideoBackends/Null/NullGfx.cpp2
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;
}