aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/linuxmoto
diff options
context:
space:
mode:
authorMax Horn2010-11-28 22:04:39 +0000
committerMax Horn2010-11-28 22:04:39 +0000
commita162ff18bc88b7ad364576ae091f0becba9117e2 (patch)
tree296771d022944e6ff883c4f202f124f28af53a76 /backends/platform/linuxmoto
parent5a825eaae249d1a92f6252ce340d5801d84e15ca (diff)
downloadscummvm-rg350-a162ff18bc88b7ad364576ae091f0becba9117e2.tar.gz
scummvm-rg350-a162ff18bc88b7ad364576ae091f0becba9117e2.tar.bz2
scummvm-rg350-a162ff18bc88b7ad364576ae091f0becba9117e2.zip
SDL: Various more SdlEventSource related fixes
svn-id: r54553
Diffstat (limited to 'backends/platform/linuxmoto')
-rw-r--r--backends/platform/linuxmoto/linuxmoto-sdl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/linuxmoto/linuxmoto-sdl.cpp b/backends/platform/linuxmoto/linuxmoto-sdl.cpp
index 6a44bfe882..3bee53cc9c 100644
--- a/backends/platform/linuxmoto/linuxmoto-sdl.cpp
+++ b/backends/platform/linuxmoto/linuxmoto-sdl.cpp
@@ -30,11 +30,11 @@
void OSystem_LINUXMOTO::initBackend() {
// Create the backend custom managers
- if (_eventManager == 0)
- _eventManager = new LinuxmotoSdlEventSource(this);
+ if (_eventSource == 0)
+ _eventSource = new LinuxmotoSdlEventSource();
if (_graphicsManager == 0)
- _graphicsManager = new LinuxmotoSdlGraphicsManager();
+ _graphicsManager = new LinuxmotoSdlGraphicsManager(_eventSource);
// Call parent implementation of this method
OSystem_POSIX::initBackend();