diff options
| author | Cameron Cawley | 2019-07-26 20:05:24 +0100 |
|---|---|---|
| committer | Filippos Karapetis | 2019-07-27 07:23:09 +0300 |
| commit | 8e8594aa0ed7803b66acc500dbf114dc88747879 (patch) | |
| tree | 287fd8740480746a7c6931d0b520ce6275dabf77 /backends/graphics/symbiansdl | |
| parent | ecd89808c49941323cca84724c1a26dfe26ce10f (diff) | |
| download | scummvm-rg350-8e8594aa0ed7803b66acc500dbf114dc88747879.tar.gz scummvm-rg350-8e8594aa0ed7803b66acc500dbf114dc88747879.tar.bz2 scummvm-rg350-8e8594aa0ed7803b66acc500dbf114dc88747879.zip | |
SYMBIAN: Remove dead code
Diffstat (limited to 'backends/graphics/symbiansdl')
| -rw-r--r-- | backends/graphics/symbiansdl/symbiansdl-graphics.cpp | 22 |
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; |
