From dda01a7b2aebb1a2a8fea0746bdc8c2decfd6f9a Mon Sep 17 00:00:00 2001 From: Ki Rill Date: Fri, 24 Jan 2020 22:17:03 +0600 Subject: [PATCH] Update app.d --- lesson#11/raylib_firstWindow/source/app.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesson#11/raylib_firstWindow/source/app.d b/lesson#11/raylib_firstWindow/source/app.d index cb71b6c..361a9ef 100644 --- a/lesson#11/raylib_firstWindow/source/app.d +++ b/lesson#11/raylib_firstWindow/source/app.d @@ -18,7 +18,7 @@ void main() { // draw BeginDrawing(); // clear the screen - ClearBackground(WHITE); // set background color to WHITE + ClearBackground(WHITE); // set background color to WHITE // draw "Hello, World!" DrawText("Hello, World!", 10, 10, 60, BLACK);