aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/symbiansdl
diff options
context:
space:
mode:
authorMax Horn2010-11-28 22:04:39 +0000
committerMax Horn2010-11-28 22:04:39 +0000
commita162ff18bc88b7ad364576ae091f0becba9117e2 (patch)
tree296771d022944e6ff883c4f202f124f28af53a76 /backends/graphics/symbiansdl
parent5a825eaae249d1a92f6252ce340d5801d84e15ca (diff)
downloadscummvm-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.cpp4
-rw-r--r--backends/graphics/symbiansdl/symbiansdl-graphics.h3
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);