From db8e2279a53815b24a08e5d6509b6c15fb043544 Mon Sep 17 00:00:00 2001 From: Andy Vandijck Date: Mon, 30 Jun 2025 19:09:27 +0200 Subject: [PATCH] Don't use D3D9Ex Don't use D3D9Ex --- src/wx/panel.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wx/panel.cpp b/src/wx/panel.cpp index ac3d2429..c3d72173 100644 --- a/src/wx/panel.cpp +++ b/src/wx/panel.cpp @@ -2412,7 +2412,9 @@ void SDLDrawingPanel::DrawingPanelInit() systemScreenMessage(_("Failed to set OpenGL properties")); } +#ifdef _WIN32 SDL_SetHint(SDL_HINT_WINDOWS_USE_D3D9EX, false); +#endif sdlwindow = SDL_CreateWindowWithProperties(props);