- use 'override' qualifier.

This commit is contained in:
Christoph Oelckers 2020-04-11 12:04:19 +02:00
commit 9dce6d88fa
2 changed files with 6 additions and 6 deletions

View file

@ -173,10 +173,10 @@ public:
SetVirtualSize(width, height);
}
// These methods should never be called.
void Update() { DBGBREAK; }
bool IsFullscreen() { DBGBREAK; return 0; }
int GetClientWidth() { DBGBREAK; return 0; }
int GetClientHeight() { DBGBREAK; return 0; }
void Update() override { DBGBREAK; }
bool IsFullscreen() override { DBGBREAK; return 0; }
int GetClientWidth() override { DBGBREAK; return 0; }
int GetClientHeight() override { DBGBREAK; return 0; }
void InitializeState() override {}
float Gamma;