From cbb417a5304c3f8a229a378878f15a6bbfca05bc Mon Sep 17 00:00:00 2001 From: Ariel Antonitis Date: Wed, 22 Sep 2021 22:00:33 -0400 Subject: [PATCH] Fixed morning/evening tint. --- src/overworld.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/overworld.c b/src/overworld.c index 0948f67d66..c06513e623 100644 --- a/src/overworld.c +++ b/src/overworld.c @@ -1465,7 +1465,7 @@ void CB1_Overworld(void) const struct BlendSettings gTimeOfDayBlend[] = { [TIME_OF_DAY_NIGHT] = {.coeff = 10, .blendColor = TINT_NIGHT, .isTint = TRUE}, - [TIME_OF_DAY_TWILIGHT] = {.coeff = 4, .blendColor = 0x56dc, .isTint = TRUE}, + [TIME_OF_DAY_TWILIGHT] = {.coeff = 4, .blendColor = 0xA8B0E0, .isTint = TRUE}, [TIME_OF_DAY_DAY] = {.coeff = 0, .blendColor = 0}, };