diff options
author | Max Horn | 2010-11-28 22:04:39 +0000 |
---|---|---|
committer | Max Horn | 2010-11-28 22:04:39 +0000 |
commit | a162ff18bc88b7ad364576ae091f0becba9117e2 (patch) | |
tree | 296771d022944e6ff883c4f202f124f28af53a76 /backends/platform/gp2x | |
parent | 5a825eaae249d1a92f6252ce340d5801d84e15ca (diff) | |
download | scummvm-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/gp2x')
-rw-r--r-- | backends/platform/gp2x/gp2x.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/gp2x/gp2x.cpp b/backends/platform/gp2x/gp2x.cpp index 49a7132974..8ae54d679c 100644 --- a/backends/platform/gp2x/gp2x.cpp +++ b/backends/platform/gp2x/gp2x.cpp @@ -136,12 +136,12 @@ void OSystem_GP2X::initBackend() { GP2X_HW::mixerMoveVolume(0); // Create the events manager - if (_eventManager == 0) - _eventManager = new GP2XSdlEventSource(this); + if (_eventSource == 0) + _eventSource = new GP2XSdlEventSource(); // Create the graphics manager if (_graphicsManager == 0) - _graphicsManager = new GP2XSdlGraphicsManager(); + _graphicsManager = new GP2XSdlGraphicsManager(_eventSource); // Call parent implementation of this method OSystem_POSIX::initBackend(); |