From e0c41f83054f9a39c85094d7183e67909306bb80 Mon Sep 17 00:00:00 2001 From: Dennis Meinen Date: Wed, 5 Oct 2022 23:11:39 +0200 Subject: [PATCH] Fixed typo. --- examples/textures/textures_svg_loading.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/textures/textures_svg_loading.c b/examples/textures/textures_svg_loading.c index f35d40a4b..434ec7602 100644 --- a/examples/textures/textures_svg_loading.c +++ b/examples/textures/textures_svg_loading.c @@ -52,7 +52,7 @@ int main(void) DrawTexture(texture, screenWidth/2 - texture.width/2, screenHeight/2 - texture.height/2, WHITE); - //Red boarder to illustrate how the SVG is centered within the specified dimensions + //Red border to illustrate how the SVG is centered within the specified dimensions DrawRectangleLines((screenWidth / 2 - texture.width / 2) - 1, (screenHeight / 2 - texture.height / 2) - 1, texture.width + 2, texture.height + 2, RED); DrawText("this IS a texture loaded from an SVG file!", 300, 410, 10, GRAY);