aboutsummaryrefslogtreecommitdiff
path: root/src/textures.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/textures.c')
-rw-r--r--src/textures.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/textures.c b/src/textures.c
index 518348f4..f5523a3e 100644
--- a/src/textures.c
+++ b/src/textures.c
@@ -422,12 +422,7 @@ void UnloadTexture(Texture2D texture)
// Unload render texture from GPU memory
void UnloadRenderTexture(RenderTexture2D target)
{
- if (target.id != 0)
- {
- rlDeleteRenderTextures(target);
-
- TraceLog(INFO, "[FBO ID %i] Unloaded render texture data from VRAM (GPU)", target.id);
- }
+ if (target.id != 0) rlDeleteRenderTextures(target);
}
// Get pixel data from image in the form of Color struct array