(svn r24992) -Codechange: [SDL] Make CreateMainSurface and PollEvent private methods instead of static functions.

This commit is contained in:
matthijs
2013-02-14 11:06:06 +00:00
parent 97decad061
commit afcb4a25b2
2 changed files with 5 additions and 2 deletions

View File

@@ -34,6 +34,9 @@ public:
/* virtual */ bool ClaimMousePointer();
/* virtual */ const char *GetName() const { return "sdl"; }
private:
int PollEvent();
bool CreateMainSurface(uint w, uint h);
};
/** Factory for the SDL video driver. */