summaryrefslogtreecommitdiffhomepage
path: root/examples/textures/textures_image_drawing.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/textures/textures_image_drawing.c')
-rw-r--r--examples/textures/textures_image_drawing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/textures/textures_image_drawing.c b/examples/textures/textures_image_drawing.c
index ea3cb319..2707746c 100644
--- a/examples/textures/textures_image_drawing.c
+++ b/examples/textures/textures_image_drawing.c
@@ -48,7 +48,7 @@ int main(void)
// Draw over image using custom font
ImageDrawTextEx(&parrots, font, "PARROTS & CAT", (Vector2){ 300, 230 }, (float)font.baseSize, -2, WHITE);
- UnloadFont(font); // Unload custom spritefont (already drawn used on image)
+ UnloadFont(font); // Unload custom font (already drawn used on image)
Texture2D texture = LoadTextureFromImage(parrots); // Image converted to texture, uploaded to GPU memory (VRAM)
UnloadImage(parrots); // Once image has been converted to texture and uploaded to VRAM, it can be unloaded from RAM