SDL: Add basic abstraction class for the SDL window.

This commit is contained in:
Johannes Schickel 2015-02-16 00:49:42 +01:00
parent b00050439f
commit 627d766325
37 changed files with 353 additions and 291 deletions

View file

@ -93,7 +93,7 @@ void OSystem_SDL_Maemo::initBackend() {
_eventSource = new MaemoSdlEventSource();
if (_graphicsManager == 0)
_graphicsManager = new MaemoSdlGraphicsManager(_eventSource);
_graphicsManager = new MaemoSdlGraphicsManager(_eventSource, _window);
if (_eventObserver == 0)
_eventObserver = new MaemoSdlEventObserver((MaemoSdlEventSource *)_eventSource);