diff options
author | Max Horn | 2010-11-28 17:17:41 +0000 |
---|---|---|
committer | Max Horn | 2010-11-28 17:17:41 +0000 |
commit | 69092836bdb0c4c35d5fba14391cef970197b327 (patch) | |
tree | a6f598b4398ed81f6ee465cf1bc1023e6600c09f /backends/graphics/linuxmotosdl | |
parent | 66cb595f224f15f0e71b9d695bdaa2549158fbae (diff) | |
download | scummvm-rg350-69092836bdb0c4c35d5fba14391cef970197b327.tar.gz scummvm-rg350-69092836bdb0c4c35d5fba14391cef970197b327.tar.bz2 scummvm-rg350-69092836bdb0c4c35d5fba14391cef970197b327.zip |
LINUXMOTO: Compilation fixes
svn-id: r54532
Diffstat (limited to 'backends/graphics/linuxmotosdl')
-rw-r--r-- | backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp | 4 | ||||
-rw-r--r-- | backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp index dbedb2e1a7..be4dbe74c3 100644 --- a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp +++ b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp @@ -45,6 +45,10 @@ static const OSystem::GraphicsMode s_supportedGraphicsModes[] = { {0, 0, 0} }; +LinuxmotoSdlGraphicsManager::LinuxmotoSdlGraphicsManager(SdlEventSource *sdlEventSource) + : SdlGraphicsManager(sdlEventSource) { +} + const OSystem::GraphicsMode *LinuxmotoSdlGraphicsManager::getSupportedGraphicsModes() const { return s_supportedGraphicsModes; } diff --git a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h index 1b387ca189..8124aca778 100644 --- a/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h +++ b/backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h @@ -30,6 +30,8 @@ class LinuxmotoSdlGraphicsManager : public SdlGraphicsManager { public: + LinuxmotoSdlGraphicsManager(SdlEventSource *sdlEventSource); + virtual void initSize(uint w, uint h); virtual void setGraphicsModeIntern(); virtual bool setGraphicsMode(int mode); |