mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
M_DrawGenericOptions: indent highlighted option
This commit is contained in:
parent
93e9bd5485
commit
5d1d0deb6d
1 changed files with 2 additions and 2 deletions
|
|
@ -4089,7 +4089,7 @@ void M_DrawGenericOptions(void)
|
||||||
cursory = y;
|
cursory = y;
|
||||||
|
|
||||||
if ((currentMenu->menuitems[i].status & IT_DISPLAY)==IT_STRING)
|
if ((currentMenu->menuitems[i].status & IT_DISPLAY)==IT_STRING)
|
||||||
V_DrawString(x, y, 0, currentMenu->menuitems[i].text);
|
V_DrawString(x + (i == itemOn ? 1 : 0), y, 0, currentMenu->menuitems[i].text);
|
||||||
else
|
else
|
||||||
V_DrawString(x, y, highlightflags, currentMenu->menuitems[i].text);
|
V_DrawString(x, y, highlightflags, currentMenu->menuitems[i].text);
|
||||||
|
|
||||||
|
|
@ -4187,7 +4187,7 @@ void M_DrawGenericOptions(void)
|
||||||
{
|
{
|
||||||
V_DrawScaledPatch(x - 24, cursory, 0,
|
V_DrawScaledPatch(x - 24, cursory, 0,
|
||||||
W_CachePatchName("M_CURSOR", PU_CACHE));
|
W_CachePatchName("M_CURSOR", PU_CACHE));
|
||||||
V_DrawString(x, cursory, highlightflags, currentMenu->menuitems[itemOn].text);
|
V_DrawString(x + 1, cursory, highlightflags, currentMenu->menuitems[itemOn].text);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue