diff options
-rw-r--r-- | backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp | 6 | ||||
-rw-r--r-- | backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp index 3f4a5ea92e..e3336844ee 100644 --- a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp +++ b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp @@ -564,6 +564,12 @@ bool DispmanXSdlGraphicsManager::handleScalerHotkeys(Common::KeyCode key) { return true; } +bool DispmanXSdlGraphicsManager::hasFeature(OSystem::Feature f) { + if (f == OSystem::kFeatureFullscreenMode) { + return false; + } +} + void DispmanXSdlGraphicsManager::setFullscreenMode(bool enable) { _videoMode.fullscreen = enable; } diff --git a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h index d2a52f5c69..1866ec14a2 100644 --- a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h +++ b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.h @@ -38,6 +38,7 @@ public: void setFullscreenMode(bool enable); void setAspectRatioCorrection(bool enable); void clearOverlay(); + bool hasFeature(OSystem::Feature f); protected: // Raspberry Pi Dispmanx API void dispmanXSetup(int width, int height); |