diff --git a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp index 7760005d1f3..28f1cc13671 100644 --- a/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp +++ b/backends/graphics/dispmanxsdl/dispmanxsdl-graphics.cpp @@ -566,11 +566,13 @@ bool DispmanXSdlGraphicsManager::handleScalerHotkeys(Common::KeyCode key) { bool DispmanXSdlGraphicsManager::hasFeature(OSystem::Feature f) { if (f == OSystem::kFeatureFullscreenMode) { return false; + } else { + return SurfaceSdlGraphicsManager::hasFeature(f); } } void DispmanXSdlGraphicsManager::setFullscreenMode(bool enable) { - _videoMode.fullscreen = enable; + // Since we're always in fullscreen mode, we do nothing here. } void DispmanXSdlGraphicsManager::setAspectRatioCorrection(bool enable) {