summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWmain.cpp
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/SWmain.cpp
parent2ea7ffc94ac2ca52d0ad1e272b0abf988b427f0b (diff)
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