diff --git a/include/SDL3_image/SDL_image.h b/include/SDL3_image/SDL_image.h index f308c4be..969633cb 100644 --- a/include/SDL3_image/SDL_image.h +++ b/include/SDL3_image/SDL_image.h @@ -56,21 +56,22 @@ extern "C" { } #if SDL_IMAGE_MAJOR_VERSION < 3 && SDL_MAJOR_VERSION < 3 + /** - * This is the version number macro for the current SDL_image version. + * This is the version number macro for the current SDL_image version. * - * In versions higher than 2.9.0, the minor version overflows into - * the thousands digit: for example, 2.23.0 is encoded as 4300. - * This macro will not be available in SDL 3.x or SDL_image 3.x. + * In versions higher than 2.9.0, the minor version overflows into the + * thousands digit: for example, 2.23.0 is encoded as 4300. This macro will + * not be available in SDL 3.x or SDL_image 3.x. * - * Deprecated, use SDL_IMAGE_VERSION_ATLEAST or SDL_IMAGE_VERSION instead. + * Deprecated, use SDL_IMAGE_VERSION_ATLEAST or SDL_IMAGE_VERSION instead. */ #define SDL_IMAGE_COMPILEDVERSION \ SDL_VERSIONNUM(SDL_IMAGE_MAJOR_VERSION, SDL_IMAGE_MINOR_VERSION, SDL_IMAGE_PATCHLEVEL) #endif /* SDL_IMAGE_MAJOR_VERSION < 3 && SDL_MAJOR_VERSION < 3 */ /** - * This macro will evaluate to true if compiled with SDL_image at least X.Y.Z. + * This macro will evaluate to true if compiled with SDL_image at least X.Y.Z. */ #define SDL_IMAGE_VERSION_ATLEAST(X, Y, Z) \ ((SDL_IMAGE_MAJOR_VERSION >= X) && \ @@ -2082,8 +2083,7 @@ extern DECLSPEC int SDLCALL IMG_SaveJPG(SDL_Surface *surface, const char *file, extern DECLSPEC int SDLCALL IMG_SaveJPG_IO(SDL_Surface *surface, SDL_IOStream *dst, int closeio, int quality); /** - * Animated image support - * Currently only animated GIFs are supported. + * Animated image support Currently only animated GIFs are supported. */ typedef struct IMG_Animation {