summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
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/SWmain.cpp
parent2ea7ffc94ac2ca52d0ad1e272b0abf988b427f0b (diff)
parentf6c21e002bfd04484bf7fc0d4071117dddf1d682 (diff)
Merge pull request #5848 from lioncash/semi
General: Remove unnecessary semicolons
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWmain.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWmain.cpp4
1 files changed, 2 insertions, 2 deletions
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