mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
General: Remove unnecessary semicolons
This commit is contained in:
parent
2ea7ffc94a
commit
f6c21e002b
19 changed files with 20 additions and 22 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue