Fix a few compiler warnings (#2063)

This commit is contained in:
CasualPokePlayer
2024-08-01 14:26:46 -07:00
committed by GitHub
parent 54e87c915f
commit 757a608b6e
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ public:
void Blit(const GPU& gpu) override;
void Stop(const GPU& gpu) override;
bool NeedsShaderCompile() { return ShaderStepIdx != 33; }
bool NeedsShaderCompile() override { return ShaderStepIdx != 33; }
void ShaderCompileStep(int& current, int& count) override;
private:
ComputeRenderer(GLCompositor&& compositor);