mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
Disable borderless on Mac (fixes #1413)
This commit is contained in:
parent
7da2cb9357
commit
aa7e6ff3e3
|
@ -2331,11 +2331,13 @@ int CGraphicsBackend_SDL_OpenGL::Init(const char *pName, int *Screen, int *pWidt
|
|||
if(Flags&IGraphicsBackend::INITFLAG_RESIZABLE)
|
||||
SdlFlags |= SDL_WINDOW_RESIZABLE;
|
||||
#endif
|
||||
#if defined(CONF_PLATFORM_MACOSX) // TODO: remove this when fixed in SDL
|
||||
if(Flags&IGraphicsBackend::INITFLAG_BORDERLESS)
|
||||
SdlFlags |= SDL_WINDOW_BORDERLESS;
|
||||
#endif
|
||||
if(Flags&IGraphicsBackend::INITFLAG_FULLSCREEN)
|
||||
{
|
||||
//when we are at fullscreen, we really shouldn't allow window sizes, that aren't supported by the driver
|
||||
// when we are at fullscreen, we really shouldn't allow window sizes, that aren't supported by the driver
|
||||
bool SupportedResolution = false;
|
||||
SDL_DisplayMode mode;
|
||||
int maxModes = SDL_GetNumDisplayModes(g_Config.m_GfxScreen);
|
||||
|
|
Loading…
Reference in a new issue