ref: 5395196b520f36c63d7e052119756cbe426e84c9
parent: 84df1a427b6a5e9ff95a3b537e39b2bef00710c0
author: Clownacy <Clownacy@users.noreply.github.com>
date: Tue Nov 3 08:15:56 EST 2020
Disable SDL1 OpenGL window resizing Seems to be broken. I'll address it in the future.
--- a/src/Backends/Rendering/Window/OpenGL3/SDL1.cpp
+++ b/src/Backends/Rendering/Window/OpenGL3/SDL1.cpp
@@ -18,7 +18,7 @@
Backend_PrintError("Couldn't set OpenGL swap interval: %s", SDL_GetError());
#endif
- if (SDL_SetVideoMode(*screen_width, *screen_height, 0, SDL_RESIZABLE | SDL_OPENGL | (fullscreen ? SDL_FULLSCREEN : 0)) != NULL)
+ if (SDL_SetVideoMode(*screen_width, *screen_height, 0, SDL_OPENGL | (fullscreen ? SDL_FULLSCREEN : 0)) != NULL)
{
SDL_WM_SetCaption(window_title, NULL);