diff options
author | Thierry Crozat | 2018-07-01 23:57:00 +0100 |
---|---|---|
committer | Thierry Crozat | 2018-07-08 16:54:51 +0100 |
commit | 89f1b1c96eaa8cbb4f4938bd6524cab6c15227c1 (patch) | |
tree | d3fb95fd998ec656b4493fc2d685045881a5f979 /backends | |
parent | adacb4fcfd743aa3980b3e08c62578f32de2d0b3 (diff) | |
download | scummvm-rg350-89f1b1c96eaa8cbb4f4938bd6524cab6c15227c1.tar.gz scummvm-rg350-89f1b1c96eaa8cbb4f4938bd6524cab6c15227c1.tar.bz2 scummvm-rg350-89f1b1c96eaa8cbb4f4938bd6524cab6c15227c1.zip |
GUI: Add Stretch Mode selection in Options dialog
Diffstat (limited to 'backends')
-rw-r--r-- | backends/graphics/openglsdl/openglsdl-graphics.cpp | 1 | ||||
-rw-r--r-- | backends/graphics/surfacesdl/surfacesdl-graphics.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/backends/graphics/openglsdl/openglsdl-graphics.cpp b/backends/graphics/openglsdl/openglsdl-graphics.cpp index 8dcc5582a9..ef3b25e98c 100644 --- a/backends/graphics/openglsdl/openglsdl-graphics.cpp +++ b/backends/graphics/openglsdl/openglsdl-graphics.cpp @@ -218,6 +218,7 @@ void OpenGLSdlGraphicsManager::deactivateManager() { bool OpenGLSdlGraphicsManager::hasFeature(OSystem::Feature f) const { switch (f) { case OSystem::kFeatureFullscreenMode: + case OSystem::kFeatureStretchMode: case OSystem::kFeatureIconifyWindow: return true; diff --git a/backends/graphics/surfacesdl/surfacesdl-graphics.cpp b/backends/graphics/surfacesdl/surfacesdl-graphics.cpp index 654dbd7c97..1ca89022ac 100644 --- a/backends/graphics/surfacesdl/surfacesdl-graphics.cpp +++ b/backends/graphics/surfacesdl/surfacesdl-graphics.cpp @@ -256,6 +256,7 @@ bool SurfaceSdlGraphicsManager::hasFeature(OSystem::Feature f) const { (f == OSystem::kFeatureAspectRatioCorrection) || #if SDL_VERSION_ATLEAST(2, 0, 0) (f == OSystem::kFeatureFilteringMode) || + (f == OSystem::kFeatureStretchMode) || #endif (f == OSystem::kFeatureCursorPalette) || (f == OSystem::kFeatureIconifyWindow); |