From 542f070ab4c50c945811cd4fd8a27d74d90a2a3f Mon Sep 17 00:00:00 2001 From: Artem Borovik Date: Fri, 4 Oct 2024 20:12:14 +0300 Subject: [PATCH] formatting fix --- examples/textures/textures_polygon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/textures/textures_polygon.c b/examples/textures/textures_polygon.c index 958eeb6b..4805e399 100644 --- a/examples/textures/textures_polygon.c +++ b/examples/textures/textures_polygon.c @@ -88,9 +88,9 @@ int main(void) BeginDrawing(); ClearBackground(RAYWHITE); - + DrawText("textured polygon", 20, 20, 20, DARKGRAY); - + DrawTexturePoly(texture, (Vector2){ GetScreenWidth()/2.0f, GetScreenHeight()/2.0f }, positions, texcoords, MAX_POINTS, WHITE); @@ -104,7 +104,7 @@ int main(void) CloseWindow(); // Close window and OpenGL context //-------------------------------------------------------------------------------------- - + return 0; }