diff options
| author | Ray <[email protected]> | 2021-04-29 00:07:28 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-04-29 00:07:28 +0200 |
| commit | a3e7664dcf43add951192ba9eb60c6c61e6bec85 (patch) | |
| tree | 3b16bad4646a30274e36a63f822ebc92a3e472af /src/core.c | |
| parent | ffadeeeb8467d7df2ad35ccc5504268f0abffb3d (diff) | |
| download | raylib-a3e7664dcf43add951192ba9eb60c6c61e6bec85.tar.gz raylib-a3e7664dcf43add951192ba9eb60c6c61e6bec85.zip | |
Fixed bug that overrides other flags
This issue prevented enabling MSAA on several platforms
Diffstat (limited to 'src/core.c')
| -rw-r--r-- | src/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |
