fix typo in rtextures.c (#6125)

This commit is contained in:
Vortex
2026-09-04 02:04:02 -04:00
committed by GitHub
parent a65f8be3c2
commit df4bf2f6a0

View File

@@ -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