mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
OGL/ProgramShaderCache: Remove unnecessary virtual keyword
This is superfluous, considering the override keyword is present.
This commit is contained in:
@ -146,9 +146,9 @@ private:
|
||||
class SharedContextAsyncShaderCompiler : public VideoCommon::AsyncShaderCompiler
|
||||
{
|
||||
protected:
|
||||
virtual bool WorkerThreadInitMainThread(void** param) override;
|
||||
virtual bool WorkerThreadInitWorkerThread(void* param) override;
|
||||
virtual void WorkerThreadExit(void* param) override;
|
||||
bool WorkerThreadInitMainThread(void** param) override;
|
||||
bool WorkerThreadInitWorkerThread(void* param) override;
|
||||
void WorkerThreadExit(void* param) override;
|
||||
};
|
||||
|
||||
struct SharedContextData
|
||||
|
Reference in New Issue
Block a user