From 43efe92e215901da2520a4d19e995e5a87c8e948 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 24 Jun 2021 10:39:43 +0200 Subject: [PATCH] Update core_basic_window.c --- examples/core/core_basic_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/core/core_basic_window.c b/examples/core/core_basic_window.c index 8177b3105..3c103a5f2 100644 --- a/examples/core/core_basic_window.c +++ b/examples/core/core_basic_window.c @@ -45,9 +45,9 @@ int main(void) //---------------------------------------------------------------------------------- BeginDrawing(); - ClearBackground(RAYWHITE); + ClearBackground(RAYWHITE); - DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY); + DrawText("Congrats! You created your first window!", 190, 200, 20, LIGHTGRAY); EndDrawing(); //----------------------------------------------------------------------------------