diff options
| author | Johannes Schickel | 2015-03-05 01:10:34 +0100 |
|---|---|---|
| committer | Johannes Schickel | 2015-03-05 01:10:34 +0100 |
| commit | 4d13d44f8a2db8f887e285dbcbd3bb75ccc0ae2e (patch) | |
| tree | 9fd0cb9d8b0965a2c823e690f7d467c9ff3c5aea /backends/platform/linuxmoto/linuxmoto-sdl.cpp | |
| parent | cecb9a9ecc1ec1897fdd27e1bafc7f6d494cd6af (diff) | |
| parent | b5ac3ecb1f25b2d47fd99a3c4fd3b1cddcb695c6 (diff) | |
| download | scummvm-rg350-4d13d44f8a2db8f887e285dbcbd3bb75ccc0ae2e.tar.gz scummvm-rg350-4d13d44f8a2db8f887e285dbcbd3bb75ccc0ae2e.tar.bz2 scummvm-rg350-4d13d44f8a2db8f887e285dbcbd3bb75ccc0ae2e.zip | |
Merge pull request #572 from lordhoto/sdl2-support
SDL: Add experimental support for SDL2
Diffstat (limited to 'backends/platform/linuxmoto/linuxmoto-sdl.cpp')
| -rw-r--r-- | backends/platform/linuxmoto/linuxmoto-sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/linuxmoto/linuxmoto-sdl.cpp b/backends/platform/linuxmoto/linuxmoto-sdl.cpp index a0310079de..a2b527e6ce 100644 --- a/backends/platform/linuxmoto/linuxmoto-sdl.cpp +++ b/backends/platform/linuxmoto/linuxmoto-sdl.cpp @@ -31,7 +31,7 @@ void OSystem_LINUXMOTO::initBackend() { _eventSource = new LinuxmotoSdlEventSource(); if (_graphicsManager == 0) - _graphicsManager = new LinuxmotoSdlGraphicsManager(_eventSource); + _graphicsManager = new LinuxmotoSdlGraphicsManager(_eventSource, _window); // Call parent implementation of this method OSystem_POSIX::initBackend(); |
