- more macOS compilation fixes

Still not complete…
This commit is contained in:
Christoph Oelckers 2020-01-07 01:11:19 +01:00
parent 134122335b
commit fb985d2503
70 changed files with 165 additions and 733 deletions

View file

@ -144,10 +144,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;