summaryrefslogtreecommitdiffhomepage
path: root/examples/textures/textures_image_drawing.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2021-06-26 21:07:00 +0200
committerraysan5 <[email protected]>2021-06-26 21:07:00 +0200
commit2f75657350f4377e41064c7ca2941e00e586be63 (patch)
tree7c6113bfdd73fb69d64eafa7a5f3ce3a952be888 /examples/textures/textures_image_drawing.c
parent00c87953853d46ede8ac8fa8c1b2640dc941f82c (diff)
downloadraylib-2f75657350f4377e41064c7ca2941e00e586be63.tar.gz
raylib-2f75657350f4377e41064c7ca2941e00e586be63.zip
WARNING: REMOVED: Some deprecated function names mapping
Some functions/values have been deprecated for long time but some mapping was kept for convenience. Some of those mappings have been removed...
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