From df4bf2f6a0f8a0fa012ad51155f183518b0476c4 Mon Sep 17 00:00:00 2001 From: Vortex <73261680+Vortex2Oblivion@users.noreply.github.com> Date: Fri, 4 Sep 2026 02:04:02 -0400 Subject: [PATCH] fix typo in rtextures.c (#6125) --- src/rtextures.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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