aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics
diff options
context:
space:
mode:
authorMax Horn2010-11-28 17:17:41 +0000
committerMax Horn2010-11-28 17:17:41 +0000
commit69092836bdb0c4c35d5fba14391cef970197b327 (patch)
treea6f598b4398ed81f6ee465cf1bc1023e6600c09f /backends/graphics
parent66cb595f224f15f0e71b9d695bdaa2549158fbae (diff)
downloadscummvm-rg350-69092836bdb0c4c35d5fba14391cef970197b327.tar.gz
scummvm-rg350-69092836bdb0c4c35d5fba14391cef970197b327.tar.bz2
scummvm-rg350-69092836bdb0c4c35d5fba14391cef970197b327.zip
LINUXMOTO: Compilation fixes
svn-id: r54532
Diffstat (limited to 'backends/graphics')
-rw-r--r--backends/graphics/linuxmotosdl/linuxmotosdl-graphics.cpp4
-rw-r--r--backends/graphics/linuxmotosdl/linuxmotosdl-graphics.h2
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);