ambiguous chars

This commit is contained in:
tavo 2025-10-03 01:32:39 -06:00
parent 26ff0f5835
commit 348e0c42a6

View file

@ -383,7 +383,7 @@ typedef struct SkrMesh {
* across meshes. * across meshes.
*/ */
typedef struct SkrModel { typedef struct SkrModel {
SkrTexture* Textures; /*!< Array of textures used by models meshes. */ SkrTexture* Textures; /*!< Array of textures used by model's meshes. */
SkrMesh* Meshes; /*!< Array of meshes that compose the model. */ SkrMesh* Meshes; /*!< Array of meshes that compose the model. */
char* Path; /*!< Filesystem path of the model file. */ char* Path; /*!< Filesystem path of the model file. */
} SkrModel; } SkrModel;
@ -402,7 +402,7 @@ typedef struct SkrModel {
* @param channels Output pointer to receive the number of color channels. * @param channels Output pointer to receive the number of color channels.
* *
* @return Pointer to raw pixel data (heap-allocated). The exact format (e.g. * @return Pointer to raw pixel data (heap-allocated). The exact format (e.g.
* RGB vs. RGBA) is determined by the users implementation. Returns * RGB vs. RGBA) is determined by the user's implementation. Returns
* NULL if the image could not be loaded. * NULL if the image could not be loaded.
* *
* @note The returned memory must be freed with ::skr_free_image. * @note The returned memory must be freed with ::skr_free_image.