Fix using int for mode indicator flags

For consistency. Print flags are supposed to be uint32_t.
This commit is contained in:
Misa 2024-01-23 14:29:03 -08:00
parent 8d2a0c2457
commit ea8633514d
1 changed files with 1 additions and 1 deletions

View File

@ -2177,7 +2177,7 @@ static const char* interact_prompt(
static void mode_indicator_text(const int alpha)
{
const int flags = PR_BRIGHTNESS(alpha) | PR_BOR | PR_RTL_XFLIP;
const uint32_t flags = PR_BRIGHTNESS(alpha) | PR_BOR | PR_RTL_XFLIP;
const int r = 220 - help.glow;
const int g = 220 - help.glow;
const int b = 255 - help.glow/2;