diff options
| author | raysan5 <[email protected]> | 2020-02-10 17:45:50 +0100 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2020-02-10 17:45:50 +0100 |
| commit | 64c23f8477d4b785e61f8a0a1ad02bf80469a3a9 (patch) | |
| tree | a19462c58cef7353d224f5f98c3774d1657ae03c /projects/VS2017.UWP/raylib.App.UWP/App.cpp | |
| parent | 49145e90a2c82d32c1065a833b1630f1e9a2bbfd (diff) | |
| download | raylib-64c23f8477d4b785e61f8a0a1ad02bf80469a3a9.tar.gz raylib-64c23f8477d4b785e61f8a0a1ad02bf80469a3a9.zip | |
REVIEWED: VS2017.UWP project
It seems there is some problem on drawing... :(
Diffstat (limited to 'projects/VS2017.UWP/raylib.App.UWP/App.cpp')
| -rw-r--r-- | projects/VS2017.UWP/raylib.App.UWP/App.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/VS2017.UWP/raylib.App.UWP/App.cpp b/projects/VS2017.UWP/raylib.App.UWP/App.cpp index b738535f..dd1156a4 100644 --- a/projects/VS2017.UWP/raylib.App.UWP/App.cpp +++ b/projects/VS2017.UWP/raylib.App.UWP/App.cpp @@ -57,9 +57,9 @@ void App::Update() //---------------------------------------------------------------------------------- BeginDrawing(); - ClearBackground(RAYWHITE); + ClearBackground(RED); - DrawRectangle(posX, posY, 400, 100, RED); + DrawRectangle(posX, posY, 400, 100, WHITE); DrawLine(0, 0, GetScreenWidth(), GetScreenHeight(), BLUE); |
