mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-05 01:38:13 +00:00
Menus/Controls: bind names are gray unless selected
This commit is contained in:
parent
c1f143062d
commit
788f49f6e2
1 changed files with 8 additions and 1 deletions
|
|
@ -4912,6 +4912,9 @@ void M_DrawProfileControls(void)
|
|||
|
||||
UINT8 available = 0, set = 0;
|
||||
|
||||
if (i != itemOn)
|
||||
vflags |= V_GRAYMAP;
|
||||
|
||||
// Get userbound controls...
|
||||
for (k = 0; k < MAXINPUTMAPPING; k++)
|
||||
{
|
||||
|
|
@ -4983,7 +4986,11 @@ void M_DrawProfileControls(void)
|
|||
if (buf[0])
|
||||
;
|
||||
else if (!set)
|
||||
strcpy(buf, "\x85NOT BOUND");
|
||||
{
|
||||
vflags &= ~V_CHARCOLORMASK;
|
||||
vflags |= V_REDMAP;
|
||||
strcpy(buf, "NOT BOUND");
|
||||
}
|
||||
else
|
||||
{
|
||||
for (k = 0; k < MAXINPUTMAPPING; k++)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue