From 57f8548f4d6eb996da1c2eb6fc5e21157686fb62 Mon Sep 17 00:00:00 2001 From: TSnake41 Date: Tue, 29 Dec 2020 14:04:56 +0100 Subject: [PATCH] Fix shapes_logo_raylib title --- examples/shapes_logo_raylib.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/shapes_logo_raylib.lua b/examples/shapes_logo_raylib.lua index e64f24a..ead385a 100644 --- a/examples/shapes_logo_raylib.lua +++ b/examples/shapes_logo_raylib.lua @@ -3,7 +3,7 @@ local lua_color = rl.new("Color", 3, 3, 128, 255) local width, height = 800, 450 rl.SetConfigFlags(rl.FLAG_VSYNC_HINT) -rl.InitWindow(800, 450, "raylib [shapes] example - basic shapes drawing") +rl.InitWindow(800, 450, "raylib [shapes] example - raylib logo") while not rl.WindowShouldClose() do rl.BeginDrawing()