From 974985ed495d41323bd879e5ebcc21d80876db37 Mon Sep 17 00:00:00 2001 From: RobinsAviary Date: Thu, 13 Nov 2025 17:46:36 -0500 Subject: [PATCH] correct name --- examples/shapes/shapes_rlgl_triangle.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/shapes/shapes_rlgl_triangle.c b/examples/shapes/shapes_rlgl_triangle.c index 7cda0c97d..6ac6f4aad 100644 --- a/examples/shapes/shapes_rlgl_triangle.c +++ b/examples/shapes/shapes_rlgl_triangle.c @@ -1,6 +1,6 @@ /******************************************************************************************* * -* raylib [shapes] example - rlgl beginner triangle +* raylib [shapes] example - rlgl triangle * * Example complexity rating: [★★☆☆] 2/4 * @@ -30,7 +30,7 @@ int main(void) const int screenHeight = 450; SetConfigFlags(FLAG_MSAA_4X_HINT); - InitWindow(screenWidth, screenHeight, "raylib [shapes] example - rlgl beginner triangle"); + InitWindow(screenWidth, screenHeight, "raylib [shapes] example - rlgl triangle"); // Starting postions and rendered triangle positions Vector2 startingPositions[] = {{ 400.0f, 150.0f }, { 300.0f, 300.0f }, { 500.0f, 300.0f }};