From 06c38bbf3fa9d1274897be78a1ff5cac417fd99c Mon Sep 17 00:00:00 2001 From: Le Philousophe Date: Sat, 15 Oct 2022 15:30:45 +0200 Subject: [PATCH] OPENGLSDL: Redraw screen when receiving an expose event Without this, the window is not refreshed when it is recovered or minimized and restored. --- backends/graphics/openglsdl/openglsdl-graphics.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/backends/graphics/openglsdl/openglsdl-graphics.cpp b/backends/graphics/openglsdl/openglsdl-graphics.cpp index fe57e905fa0..d18c7a3a1f9 100644 --- a/backends/graphics/openglsdl/openglsdl-graphics.cpp +++ b/backends/graphics/openglsdl/openglsdl-graphics.cpp @@ -278,6 +278,7 @@ void OpenGLSdlGraphicsManager::updateScreen() { } void OpenGLSdlGraphicsManager::notifyVideoExpose() { + _forceRedraw = true; } void OpenGLSdlGraphicsManager::notifyResize(const int width, const int height) {