summaryrefslogtreecommitdiffhomepage
path: root/src/rshapes.c
diff options
context:
space:
mode:
authorRadsammyT <[email protected]>2023-08-09 18:21:14 -0400
committerGitHub <[email protected]>2023-08-10 00:21:14 +0200
commit0959f6ebf69f44d5bb0225cc94fd187ebedf8be5 (patch)
treee5614193c99f3047772fe7e99ca9aa63a4c21953 /src/rshapes.c
parent90f17499658275ace1e4d1bed1aa231e34ac38b6 (diff)
downloadraylib-0959f6ebf69f44d5bb0225cc94fd187ebedf8be5.tar.gz
raylib-0959f6ebf69f44d5bb0225cc94fd187ebedf8be5.zip
fix typos in rmodels, rshapes, rtext modules (#3236)
Diffstat (limited to 'src/rshapes.c')
-rw-r--r--src/rshapes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rshapes.c b/src/rshapes.c
index 86e998a6..8b319ed1 100644
--- a/src/rshapes.c
+++ b/src/rshapes.c
@@ -99,7 +99,7 @@ void SetShapesTexture(Texture2D texture, Rectangle source)
{
// Reset texture to default pixel if required
// WARNING: Shapes texture should be probably better validated,
- // it can break the rendering of all shapes if missused
+ // it can break the rendering of all shapes if misused
if ((texture.id == 0) || (source.width == 0) || (source.height == 0))
{
texShapes = (Texture2D){ 1, 1, 1, 1, 7 };