From 348e0c42a64cf5ef56522c5a9af0a1d27929445c Mon Sep 17 00:00:00 2001 From: tavo Date: Fri, 3 Oct 2025 01:32:39 -0600 Subject: [PATCH] ambiguous chars --- skr/skr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skr/skr.h b/skr/skr.h index a7bce53..d03a7f1 100644 --- a/skr/skr.h +++ b/skr/skr.h @@ -383,7 +383,7 @@ typedef struct SkrMesh { * across meshes. */ typedef struct SkrModel { - SkrTexture* Textures; /*!< Array of textures used by model’s meshes. */ + SkrTexture* Textures; /*!< Array of textures used by model's meshes. */ SkrMesh* Meshes; /*!< Array of meshes that compose the model. */ char* Path; /*!< Filesystem path of the model file. */ } SkrModel; @@ -402,7 +402,7 @@ typedef struct SkrModel { * @param channels Output pointer to receive the number of color channels. * * @return Pointer to raw pixel data (heap-allocated). The exact format (e.g. - * RGB vs. RGBA) is determined by the user’s implementation. Returns + * RGB vs. RGBA) is determined by the user's implementation. Returns * NULL if the image could not be loaded. * * @note The returned memory must be freed with ::skr_free_image.