Ver Fonte

SDL_version.h: Fix some whitespace.

Ryan C. Gordon há 1 ano atrás
pai
commit
5c9dbf65a3
1 ficheiros alterados com 5 adições e 5 exclusões
  1. 5 5
      include/SDL3/SDL_version.h

+ 5 - 5
include/SDL3/SDL_version.h

@@ -77,11 +77,11 @@ typedef struct SDL_Version
  * \sa SDL_Version
  * \sa SDL_GetVersion
  */
-#define SDL_VERSION(x)                          \
-{                                   \
-    (x)->major = SDL_MAJOR_VERSION;                 \
-    (x)->minor = SDL_MINOR_VERSION;                 \
-    (x)->patch = SDL_PATCHLEVEL;                    \
+#define SDL_VERSION(x)                \
+{                                     \
+    (x)->major = SDL_MAJOR_VERSION;   \
+    (x)->minor = SDL_MINOR_VERSION;   \
+    (x)->patch = SDL_PATCHLEVEL;      \
 }
 
 /**