aboutsummaryrefslogtreecommitdiff
path: root/backends/graphics/symbiansdl/symbiansdl-graphics.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/graphics/symbiansdl/symbiansdl-graphics.cpp')
-rw-r--r--backends/graphics/symbiansdl/symbiansdl-graphics.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/backends/graphics/symbiansdl/symbiansdl-graphics.cpp b/backends/graphics/symbiansdl/symbiansdl-graphics.cpp
index 227674f811..6458fcf62a 100644
--- a/backends/graphics/symbiansdl/symbiansdl-graphics.cpp
+++ b/backends/graphics/symbiansdl/symbiansdl-graphics.cpp
@@ -31,33 +31,11 @@ SymbianSdlGraphicsManager::SymbianSdlGraphicsManager(SdlEventSource *sdlEventSou
: SurfaceSdlGraphicsManager(sdlEventSource, window) {
}
-int SymbianSdlGraphicsManager::getDefaultGraphicsMode() const {
- return GFX_NORMAL;
-}
-
-static const OSystem::GraphicsMode s_supportedGraphicsModes[] = {
- {"1x", "Fullscreen", GFX_NORMAL},
- {0, 0, 0}
-};
-
-const OSystem::GraphicsMode *SymbianSdlGraphicsManager::getSupportedGraphicsModes() const {
- return s_supportedGraphicsModes;
-}
-
-// make sure we always go to normal, even if the string might be set wrong!
-bool SymbianSdlGraphicsManager::setGraphicsMode(int /*name*/) {
- // let parent OSystem_SDL handle it
- return SurfaceSdlGraphicsManager::setGraphicsMode(getDefaultGraphicsMode());
-}
-
bool SymbianSdlGraphicsManager::hasFeature(OSystem::Feature f) const {
switch (f) {
case OSystem::kFeatureFullscreenMode:
case OSystem::kFeatureAspectRatioCorrection:
case OSystem::kFeatureCursorPalette:
-#ifdef USE_VIBRA_SE_PXXX
- case OSystem::kFeatureVibration:
-#endif
return true;
default:
return false;