summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null/NullBackend.cpp
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2025-03-13 14:20:34 -0400
committerGitHub <noreply@github.com>2025-03-13 14:20:34 -0400
commita421d6859f00d0912be1066f424b9d5f118f2208 (patch)
tree1403654db927f834be21f7ed00b4618a51f3d377 /Source/Core/VideoBackends/Null/NullBackend.cpp
parentde997d616fb013735bb40a3e0bb945c776bd1a16 (diff)
parent5b36c13bfb7a9e3c33fb57ad881e65fb8ae223ea (diff)
Merge pull request #13418 from jordan-woyak/efb-interface
VideoCommon: Rename Renderer to EFBInterface.
Diffstat (limited to 'Source/Core/VideoBackends/Null/NullBackend.cpp')
-rw-r--r--Source/Core/VideoBackends/Null/NullBackend.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Null/NullBackend.cpp b/Source/Core/VideoBackends/Null/NullBackend.cpp
index 016613bd48..02b75fe407 100644
--- a/Source/Core/VideoBackends/Null/NullBackend.cpp
+++ b/Source/Core/VideoBackends/Null/NullBackend.cpp
@@ -69,7 +69,7 @@ bool VideoBackend::Initialize(const WindowSystemInfo& wsi)
{
return InitializeShared(std::make_unique<NullGfx>(), std::make_unique<VertexManager>(),
std::make_unique<PerfQuery>(), std::make_unique<NullBoundingBox>(),
- std::make_unique<NullRenderer>(), std::make_unique<TextureCache>());
+ std::make_unique<NullEFBInterface>(), std::make_unique<TextureCache>());
}
void VideoBackend::Shutdown()