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/graphics/symbiansdl | |
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/graphics/symbiansdl')
-rw-r--r-- | backends/graphics/symbiansdl/symbiansdl-graphics.cpp | 4 | ||||
-rw-r--r-- | backends/graphics/symbiansdl/symbiansdl-graphics.h | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/backends/graphics/symbiansdl/symbiansdl-graphics.cpp b/backends/graphics/symbiansdl/symbiansdl-graphics.cpp index c89c46ddd8..b930b5a9d1 100644 --- a/backends/graphics/symbiansdl/symbiansdl-graphics.cpp +++ b/backends/graphics/symbiansdl/symbiansdl-graphics.cpp @@ -28,6 +28,10 @@ #include "backends/graphics/symbiansdl/symbiansdl-graphics.h" #include "backends/platform/symbian/src/SymbianActions.h" +SymbianSdlGraphicsManager::SymbianSdlGraphicsManager(SdlEventSource *sdlEventSource) + : SdlGraphicsManager(sdlEventSource) { +} + int SymbianSdlGraphicsManager::getDefaultGraphicsMode() const { return GFX_NORMAL; } diff --git a/backends/graphics/symbiansdl/symbiansdl-graphics.h b/backends/graphics/symbiansdl/symbiansdl-graphics.h index b0e87c8025..54b871b265 100644 --- a/backends/graphics/symbiansdl/symbiansdl-graphics.h +++ b/backends/graphics/symbiansdl/symbiansdl-graphics.h @@ -30,6 +30,9 @@ class SymbianSdlGraphicsManager : public SdlGraphicsManager { public: + SymbianSdlGraphicsManager(SdlEventSource *sdlEventSource); + +public: virtual bool hasFeature(OSystem::Feature f); virtual void setFeatureState(OSystem::Feature f, bool enable); |