2
0
Эх сурвалжийг харах

Fixed bug that overrides other flags

This issue prevented enabling MSAA on several platforms
Ray 4 жил өмнө
parent
commit
a3e7664dcf
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      src/core.c

+ 1 - 1
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();