From 344351fe671110608a08e0a110bf29ce2abffa79 Mon Sep 17 00:00:00 2001 From: naezith Date: Sat, 30 Nov 2019 03:56:36 +0300 Subject: [PATCH] feat(flappy): change grass color --- tutorials/flappy-bird/step_9/flappy-bird.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/flappy-bird/step_9/flappy-bird.cpp b/tutorials/flappy-bird/step_9/flappy-bird.cpp index 07c84a3d..2bda6592 100644 --- a/tutorials/flappy-bird/step_9/flappy-bird.cpp +++ b/tutorials/flappy-bird/step_9/flappy-bird.cpp @@ -51,7 +51,7 @@ struct flappy_bird_constants { const float grass_thickness{20.0f}; const int background_image_height{2048}; const graphics::color ground_color{220, 209, 143}; - const graphics::color grass_color{132, 227, 90}; + const graphics::color grass_color{176, 218, 110}; const graphics::outline_color grass_outline_color{2.0f, graphics::color{76, 47, 61}}; };