summaryrefslogtreecommitdiffhomepage
path: root/src/textures.c
diff options
context:
space:
mode:
authorRay <[email protected]>2017-06-29 16:31:40 +0200
committerGitHub <[email protected]>2017-06-29 16:31:40 +0200
commit83b4b13a2ce96ab27ddf0d024563c131da3e549a (patch)
tree412402ada335f5f920abdc18f868572cd13fafc5 /src/textures.c
parent495b6d8883135bf00c01c97ce743616c437bbbe9 (diff)
parent056a494baf3b4c450e734967c033919facfdec5c (diff)
downloadraylib-83b4b13a2ce96ab27ddf0d024563c131da3e549a.tar.gz
raylib-83b4b13a2ce96ab27ddf0d024563c131da3e549a.zip
Merge pull request #314 from nounoursheureux/develop
Fix some typos (lenght -> length)
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/textures.c b/src/textures.c
index 9b0067cf..5196b1e1 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -2397,7 +2397,7 @@ static Image LoadASTC(const char *fileName)
unsigned char blockZ; // Block Z dimensions (1 for 2D images)
unsigned char width[3]; // Image width in pixels (24bit value)
unsigned char height[3]; // Image height in pixels (24bit value)
- unsigned char lenght[3]; // Image Z-size (1 for 2D images)
+ unsigned char length[3]; // Image Z-size (1 for 2D images)
} ASTCHeader;
Image image;