summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software
diff options
context:
space:
mode:
authorTilka <tilkax@gmail.com>2017-07-31 02:29:10 +0100
committerGitHub <noreply@github.com>2017-07-31 02:29:10 +0100
commit141fb0f03ca4e0d05f7ccbf3e020997097f60dbe (patch)
tree7132560e11a2b2f538f94862b28c2d28622e6d59 /Source/Core/VideoBackends/Software
parent2ea7ffc94ac2ca52d0ad1e272b0abf988b427f0b (diff)
parentf6c21e002bfd04484bf7fc0d4071117dddf1d682 (diff)
Merge pull request #5848 from lioncash/semi
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