diff options
| author | Alejandro Marzini | 2010-06-29 01:21:30 +0000 |
|---|---|---|
| committer | Alejandro Marzini | 2010-06-29 01:21:30 +0000 |
| commit | 06290230d5ac664bdad864d9181fb9c9b3358af2 (patch) | |
| tree | 90940f88b33da5620aad6a4ae10599b0752fcc48 /backends/platform | |
| parent | fd77e4b09c8ca80c8e449ad7266afaa494f98500 (diff) | |
| download | scummvm-rg350-06290230d5ac664bdad864d9181fb9c9b3358af2.tar.gz scummvm-rg350-06290230d5ac664bdad864d9181fb9c9b3358af2.tar.bz2 scummvm-rg350-06290230d5ac664bdad864d9181fb9c9b3358af2.zip | |
Updated makefile. Fixed compile errors.
svn-id: r50475
Diffstat (limited to 'backends/platform')
| -rw-r--r-- | backends/platform/linuxmoto/linuxmoto-sdl.cpp | 4 | ||||
| -rw-r--r-- | backends/platform/sdl/posix/posix-main.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/backends/platform/linuxmoto/linuxmoto-sdl.cpp b/backends/platform/linuxmoto/linuxmoto-sdl.cpp index 696c339638..6ef03ed3ac 100644 --- a/backends/platform/linuxmoto/linuxmoto-sdl.cpp +++ b/backends/platform/linuxmoto/linuxmoto-sdl.cpp @@ -30,8 +30,8 @@ void OSystem_LINUXMOTO::initBackend() { // Create the backend custom managers - if (_eventsManager == 0) - _eventsManager = new LinuxmotoSdlEventManager(); + if (_eventManager == 0) + _eventManager = new LinuxmotoSdlEventManager(this); if (_graphicsManager == 0) _graphicsManager = new LinuxmotoSdlGraphicsManager(); diff --git a/backends/platform/sdl/posix/posix-main.cpp b/backends/platform/sdl/posix/posix-main.cpp index 5d865ca325..85dd0750c9 100644 --- a/backends/platform/sdl/posix/posix-main.cpp +++ b/backends/platform/sdl/posix/posix-main.cpp @@ -23,7 +23,7 @@ * */ -#if defined(UNIX) && !defined(MACOSX) && !defined(SAMSUNGTV) +#if defined(UNIX) && !defined(MACOSX) && !defined(SAMSUNGTV) && !defined(LINUXMOTO) #include "common/scummsys.h" |
