SDL_version.h: Fix some whitespace.

This commit is contained in:
Ryan C. Gordon
2024-04-06 02:09:48 -04:00
parent 6ad390fc50
commit 5c9dbf65a3

View File

@@ -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; \
}
/**