mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-04 00:05:31 +03:00
Fix using int for mode indicator flags
For consistency. Print flags are supposed to be uint32_t.
This commit is contained in:
@@ -2177,7 +2177,7 @@ static const char* interact_prompt(
|
|||||||
|
|
||||||
static void mode_indicator_text(const int alpha)
|
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 r = 220 - help.glow;
|
||||||
const int g = 220 - help.glow;
|
const int g = 220 - help.glow;
|
||||||
const int b = 255 - help.glow/2;
|
const int b = 255 - help.glow/2;
|
||||||
|
|||||||
Reference in New Issue
Block a user