From da6e7f8a1c1a67eaf1d8f4073253b5f1bfde6407 Mon Sep 17 00:00:00 2001 From: Matthew Fioravante Date: Mon, 31 Aug 2020 22:21:07 -0400 Subject: [PATCH] Minor accuracy adjustments for weather colors --- src/weather.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/weather.cpp b/src/weather.cpp index f1606e7944..a06a5484c4 100644 --- a/src/weather.cpp +++ b/src/weather.cpp @@ -252,9 +252,9 @@ void Weather::CreateSandParticle() { const std::array pixels = {{ Bitmap::pixel_format.rgba_to_uint32_t(255,255,32,255), // Yellow - Bitmap::pixel_format.rgba_to_uint32_t(255,184,32,255), // Orange + Bitmap::pixel_format.rgba_to_uint32_t(255,180,32,255), // Orange Bitmap::pixel_format.rgba_to_uint32_t(255,32,32,255), // Red - Bitmap::pixel_format.rgba_to_uint32_t(255,255,248,255), // White + Bitmap::pixel_format.rgba_to_uint32_t(255,255,240,255), // White }}; auto* img = reinterpret_cast(sand_particle_bitmap->pixels());