Fixed bug that overrides other flags

This issue prevented enabling MSAA on several platforms
This commit is contained in:
Ray 2021-04-29 00:07:28 +02:00
parent ffadeeeb84
commit a3e7664dcf

View file

@ -3782,7 +3782,7 @@ static bool InitGraphicsDevice(int width, int height)
#if defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI) || defined(PLATFORM_DRM) || defined(PLATFORM_UWP) #if defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI) || defined(PLATFORM_DRM) || defined(PLATFORM_UWP)
CORE.Window.fullscreen = true; CORE.Window.fullscreen = true;
CORE.Window.flags &= FLAG_FULLSCREEN_MODE; CORE.Window.flags |= FLAG_FULLSCREEN_MODE;
#if defined(PLATFORM_RPI) #if defined(PLATFORM_RPI)
bcm_host_init(); bcm_host_init();