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:
parent
8d2a0c2457
commit
ea8633514d
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue