From a3e7664dcf43add951192ba9eb60c6c61e6bec85 Mon Sep 17 00:00:00 2001 From: Ray <raysan5@gmail.com> Date: Thu, 29 Apr 2021 00:07:28 +0200 Subject: [PATCH] Fixed bug that overrides other flags This issue prevented enabling MSAA on several platforms --- src/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core.c b/src/core.c index 8729ad070..a6a8505c0 100644 --- a/src/core.c +++ b/src/core.c @@ -3782,7 +3782,7 @@ static bool InitGraphicsDevice(int width, int height) #if defined(PLATFORM_ANDROID) || defined(PLATFORM_RPI) || defined(PLATFORM_DRM) || defined(PLATFORM_UWP) CORE.Window.fullscreen = true; - CORE.Window.flags &= FLAG_FULLSCREEN_MODE; + CORE.Window.flags |= FLAG_FULLSCREEN_MODE; #if defined(PLATFORM_RPI) bcm_host_init();