Skip to content

Commit 3cd979b

Browse files
Sackzementsezero
authored andcommitted
SDL_render.h: enum SDL_TextureAddressMode: Removed trailing comma
1 parent db3a35e commit 3cd979b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/SDL3/SDL_render.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ typedef enum SDL_TextureAddressMode
110110
SDL_TEXTURE_ADDRESS_INVALID = -1,
111111
SDL_TEXTURE_ADDRESS_AUTO, /**< Wrapping is enabled if texture coordinates are outside [0, 1], this is the default */
112112
SDL_TEXTURE_ADDRESS_CLAMP, /**< Texture coordinates are clamped to the [0, 1] range */
113-
SDL_TEXTURE_ADDRESS_WRAP, /**< The texture is repeated (tiled) */
113+
SDL_TEXTURE_ADDRESS_WRAP /**< The texture is repeated (tiled) */
114114
} SDL_TextureAddressMode;
115115

116116
/**

0 commit comments

Comments
 (0)