Indentation fixes

This commit is contained in:
Astie Teddy 2020-09-05 20:44:37 +02:00
parent e0eca96a6d
commit 9b9e9d3168
2 changed files with 6 additions and 6 deletions

View File

@ -3,12 +3,12 @@ rl.SetConfigFlags(rl.FLAG_VSYNC_HINT)
rl.InitWindow(800, 450, "raylib [core] example - basic window") rl.InitWindow(800, 450, "raylib [core] example - basic window")
while not rl.WindowShouldClose() do while not rl.WindowShouldClose() do
rl.BeginDrawing() rl.BeginDrawing()
rl.ClearBackground(rl.RAYWHITE) rl.ClearBackground(rl.RAYWHITE)
rl.DrawText("Congrats! You created your first window!", 190, 200, 20, rl.LIGHTGRAY) rl.DrawText("Congrats! You created your first window!", 190, 200, 20, rl.LIGHTGRAY)
rl.EndDrawing() rl.EndDrawing()
end end
rl.CloseWindow() rl.CloseWindow()

View File

@ -17,7 +17,7 @@ while not rl.WindowShouldClose() do
rl.DrawText("this is NOT a texture!", 350, 370, 10, rl.GRAY) rl.DrawText("this is NOT a texture!", 350, 370, 10, rl.GRAY)
rl.EndDrawing() rl.EndDrawing()
end end
rl.CloseWindow() rl.CloseWindow()