1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 01:29:43 +01:00

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

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;