From e351f03cdf9371f63423fdda1ff168e0daff6966 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Wed, 26 Mar 2025 00:55:40 -0500 Subject: VideoCommon: Fix out-of-bounds and disabled EFB access. --- Source/Core/VideoBackends/Null/NullGfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoBackends/Null/NullGfx.cpp') 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; } -- cgit v1.2.3