mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
compile fixes
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1613 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -23,11 +23,11 @@ class GLWindow {
|
||||
int x, y;
|
||||
unsigned int depth;*/
|
||||
|
||||
virtual void SwapBuffers() = 0;
|
||||
virtual void SetWindowText(const char *text) = 0;
|
||||
virtual bool PeekMessages() = 0;
|
||||
virtual void Update() = 0;
|
||||
virtual bool MakeCurrent() = 0;
|
||||
virtual void SwapBuffers() {};
|
||||
virtual void SetWindowText(const char *text) {};
|
||||
virtual bool PeekMessages() {return false;};
|
||||
virtual void Update() {};;
|
||||
virtual bool MakeCurrent() {return false;};
|
||||
virtual void SetSize(u32 newWidth, u32 newHeight) {
|
||||
width = newWidth;
|
||||
height = newHeight;
|
||||
|
Reference in New Issue
Block a user