mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-05-10 19:01:50 +00:00
M_DrawHorizontalMenu: Final entry flashes when not selected
This commit is contained in:
parent
fa6beeaaea
commit
322e4d3447
1 changed files with 5 additions and 1 deletions
|
|
@ -1208,10 +1208,14 @@ void M_DrawHorizontalMenu(void)
|
||||||
{
|
{
|
||||||
V_DrawFill(x-2, y + 16, 4, 4, 0);
|
V_DrawFill(x-2, y + 16, 4, 4, 0);
|
||||||
}
|
}
|
||||||
|
else if (i >= currentMenu->numitems)
|
||||||
|
{
|
||||||
|
V_DrawFill(x-1, y + 17, 2, 2, 20);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
V_DrawFill(x-1, y + 17, 2, 2,
|
V_DrawFill(x-1, y + 17, 2, 2,
|
||||||
(i >= currentMenu->numitems) ? 20 : 10
|
(i == final && skullAnimCounter/5) ? 73 : 10
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue