summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-07-30 15:56:12 -0400
committerLioncash <mathew1800@gmail.com>2017-07-30 16:39:53 -0400
commitf6c21e002bfd04484bf7fc0d4071117dddf1d682 (patch)
tree7132560e11a2b2f538f94862b28c2d28622e6d59 /Source/Core/VideoBackends/Software
parent2ea7ffc94ac2ca52d0ad1e272b0abf988b427f0b (diff)
General: Remove unnecessary semicolons
Diffstat (limited to 'Source/Core/VideoBackends/Software')
-rw-r--r--Source/Core/VideoBackends/Software/SWRenderer.h3
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp4
2 files changed, 3 insertions, 4 deletions
diff --git a/Source/Core/VideoBackends/Software/SWRenderer.h b/Source/Core/VideoBackends/Software/SWRenderer.h
index ac96725253..b19b9841fd 100644
--- a/Source/Core/VideoBackends/Software/SWRenderer.h
+++ b/Source/Core/VideoBackends/Software/SWRenderer.h
@@ -26,8 +26,7 @@ public:
void RenderText(const std::string& pstr, int left, int top, u32 color) override;
u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) override;
- void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override{};
-
+ void PokeEFB(EFBAccessType type, const EfbPokeData* points, size_t num_points) override {}
u16 BBoxRead(int index) override;
void BBoxWrite(int index, u16 value) override;
diff --git a/Source/Core/VideoBackends/Software/SWmain.cpp b/Source/Core/VideoBackends/Software/SWmain.cpp
index 5319ccecd6..9c822ca34c 100644
--- a/Source/Core/VideoBackends/Software/SWmain.cpp
+++ b/Source/Core/VideoBackends/Software/SWmain.cpp
@@ -40,9 +40,9 @@ public:
{
memset(EfbInterface::perf_values, 0, sizeof(EfbInterface::perf_values));
}
- u32 GetQueryResult(PerfQueryType type) override { return EfbInterface::perf_values[type]; };
+ u32 GetQueryResult(PerfQueryType type) override { return EfbInterface::perf_values[type]; }
void FlushResults() override {}
- bool IsFlushed() const override { return true; };
+ bool IsFlushed() const override { return true; }
};
class TextureCache : public TextureCacheBase