General: Remove unnecessary semicolons

This commit is contained in:
Lioncash
2017-07-30 15:56:12 -04:00
parent 2ea7ffc94a
commit f6c21e002b
19 changed files with 20 additions and 22 deletions

View File

@ -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