summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Null
diff options
context:
space:
mode:
authorTechjar <tecknojar@gmail.com>2021-05-29 01:44:22 -0400
committerTechjar <tecknojar@gmail.com>2021-05-29 01:45:21 -0400
commita24e78b3cf07e8d169d97a2e4c3635b9efbdba35 (patch)
treee2f72810be575b59227f238761b9a6f07b3a7176 /Source/Core/VideoBackends/Null
parente4aef0a85b6cfc1e881c09c374a2d35823585870 (diff)
VideoCommon: Remove BBox* forwarding functions
Diffstat (limited to 'Source/Core/VideoBackends/Null')
-rw-r--r--Source/Core/VideoBackends/Null/NullRender.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoBackends/Null/NullRender.h b/Source/Core/VideoBackends/Null/NullRender.h
index 13bd3feae9..21bd9c9c2c 100644
--- a/Source/Core/VideoBackends/Null/NullRender.h
+++ b/Source/Core/VideoBackends/Null/NullRender.h
@@ -34,8 +34,8 @@ public:
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override { return 0; }
void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override {}
- u16 BBoxReadImpl(int index) override { return 0; }
- void BBoxWriteImpl(int index, u16 value) override {}
+ u16 BBoxRead(int index) override { return 0; }
+ void BBoxWrite(int index, u16 value) override {}
void ClearScreen(const MathUtil::Rectangle<int>& rc, bool colorEnable, bool alphaEnable,
bool zEnable, u32 color, u32 z) override