瀏覽代碼

Doxygen comment fixes in SDL_pixels.h

Petar Popovic 2 年之前
父節點
當前提交
f687e0732a
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      include/SDL3/SDL_pixels.h

+ 4 - 4
include/SDL3/SDL_pixels.h

@@ -707,10 +707,10 @@ typedef struct SDL_FColor
  */
 typedef struct SDL_Palette
 {
-    int ncolors;        /*< number of elements in `colors`. */
-    SDL_Color *colors;  /*< an array of colors, `ncolors` long. */
-    Uint32 version;     /*< internal use only, do not touch. */
-    int refcount;       /*< internal use only, do not touch. */
+    int ncolors;        /**< number of elements in `colors`. */
+    SDL_Color *colors;  /**< an array of colors, `ncolors` long. */
+    Uint32 version;     /**< internal use only, do not touch. */
+    int refcount;       /**< internal use only, do not touch. */
 } SDL_Palette;
 
 /**