mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-01-12 09:42:21 +00:00
Menu/Match Race: indent settings when highlighted
This commit is contained in:
parent
5d1d0deb6d
commit
0ff29a2a41
1 changed files with 7 additions and 1 deletions
|
|
@ -2455,7 +2455,7 @@ void M_DrawRaceDifficulty(void)
|
|||
|
||||
INT32 f = (i == itemOn) ? highlightflags : 0;
|
||||
|
||||
V_DrawString(140 + 48*menutransition.tics, y, f, currentMenu->menuitems[i].text);
|
||||
V_DrawString(140 + 48*menutransition.tics + (i == itemOn ? 1 : 0), y, f, currentMenu->menuitems[i].text);
|
||||
|
||||
if (currentMenu->menuitems[i].status & IT_CVAR)
|
||||
{
|
||||
|
|
@ -2475,6 +2475,12 @@ void M_DrawRaceDifficulty(void)
|
|||
}
|
||||
}
|
||||
|
||||
if (i == itemOn)
|
||||
{
|
||||
V_DrawScaledPatch(140 + 48*menutransition.tics - 24, y, 0,
|
||||
W_CachePatchName("M_CURSOR", PU_CACHE));
|
||||
}
|
||||
|
||||
y += 10;
|
||||
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue