Переглянути джерело

SDL_render.h: enum SDL_TextureAddressMode: Removed trailing comma

Petar Popovic 1 місяць тому
батько
коміт
3cd979b353
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      include/SDL3/SDL_render.h

+ 1 - 1
include/SDL3/SDL_render.h

@@ -110,7 +110,7 @@ typedef enum SDL_TextureAddressMode
     SDL_TEXTURE_ADDRESS_INVALID = -1,
     SDL_TEXTURE_ADDRESS_AUTO,   /**< Wrapping is enabled if texture coordinates are outside [0, 1], this is the default */
     SDL_TEXTURE_ADDRESS_CLAMP,  /**< Texture coordinates are clamped to the [0, 1] range */
-    SDL_TEXTURE_ADDRESS_WRAP,   /**< The texture is repeated (tiled) */
+    SDL_TEXTURE_ADDRESS_WRAP    /**< The texture is repeated (tiled) */
 } SDL_TextureAddressMode;
 
 /**