Commit c14813a879975b03cd975c826195c7ad262fa7c8

Sam Lantinga 2021-08-04T13:00:14

Fixed spacing

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c
index ec6dc08..760af2a 100644
--- a/src/video/SDL_video.c
+++ b/src/video/SDL_video.c
@@ -1616,7 +1616,7 @@ SDL_CreateWindow(const char *title, int x, int y, int w, int h, Uint32 flags)
             SDL_zero(fullscreen_mode);
             fullscreen_mode.w = w;
             fullscreen_mode.h = h;
-            if(SDL_GetClosestDisplayModeForDisplay(display, &fullscreen_mode, &closest_mode) != NULL) {
+            if (SDL_GetClosestDisplayModeForDisplay(display, &fullscreen_mode, &closest_mode) != NULL) {
                 bounds.w = closest_mode.w;
                 bounds.h = closest_mode.h;
             }