From 47866ff783e87d9bf6f06f51e05d528656f82c67 Mon Sep 17 00:00:00 2001 From: "Amine B. Hassouna" Date: Thu, 29 Nov 2018 20:55:40 +0100 Subject: [PATCH] Fix COLOR_YELLOW --- src/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.c b/src/utils.c index c4d84e4..e45e6cc 100644 --- a/src/utils.c +++ b/src/utils.c @@ -42,7 +42,7 @@ const SDL_Color COLOR_LIGHT_GRAY = {200, 200, 200, 200}; const SDL_Color COLOR_RED = {255, 0, 0, 255}; const SDL_Color COLOR_GREEN = {0, 255, 0, 255}; const SDL_Color COLOR_BLUE = {0, 0, 255, 255}; -const SDL_Color COLOR_YELLOW = {0, 255, 255, 255}; +const SDL_Color COLOR_YELLOW = {255, 255, 0, 255}; void Utils_setBackgroundColor(SDL_Renderer *renderer, SDL_Color color) {