Remove trailing spaces

This commit is contained in:
Ray
2023-03-13 12:08:23 +01:00
parent 393b0d1a80
commit a7f81b06b9
5 changed files with 18 additions and 15 deletions

View File

@@ -3364,7 +3364,7 @@ bool IsRenderTextureReady(RenderTexture2D target)
{
return ((target.id > 0) && // Validate OpenGL id
IsTextureReady(target.depth) && // Validate FBO depth texture/renderbuffer
IsTextureReady(target.texture)); // Validate FBO texture
IsTextureReady(target.texture)); // Validate FBO texture
}
// Unload render texture from GPU memory (VRAM)