diff --git a/src/rtextures.c b/src/rtextures.c index 47d0e54d2..18d8a950a 100644 --- a/src/rtextures.c +++ b/src/rtextures.c @@ -4445,7 +4445,7 @@ bool IsTextureValid(Texture2D texture) { bool result = false; - if ((texture.id > 0) && // Validate OpenGL id (texture uplaoded to GPU) + if ((texture.id > 0) && // Validate OpenGL id (texture uploaded to GPU) (texture.width > 0) && // Validate texture width (texture.height > 0) && // Validate texture height (texture.format > 0) && // Validate texture pixel format