mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 20:41:46 +00:00
Change the text for skipping charsel with profile info
Used to be "CHANGES? No/Yes", but that was confusing. Now "READY? All good/Change" (had to be adjusted from discussed text to fit in the space, even with thinstring)
This commit is contained in:
parent
cd2bb2b300
commit
36797e6bde
1 changed files with 4 additions and 4 deletions
|
|
@ -1395,20 +1395,20 @@ static void M_DrawCharSelectPreview(UINT8 num)
|
||||||
else if (p->mdepth == CSSTEP_ASKCHANGES)
|
else if (p->mdepth == CSSTEP_ASKCHANGES)
|
||||||
{
|
{
|
||||||
UINT8 i;
|
UINT8 i;
|
||||||
char choices[][4] = {"NO", "YES"};
|
char choices[2][9] = {"All good", "Change"};
|
||||||
INT32 xpos = x+8;
|
INT32 xpos = x+8;
|
||||||
INT32 ypos = y+38;
|
INT32 ypos = y+38;
|
||||||
|
|
||||||
V_DrawFileString(xpos, ypos, 0, "CHANGES?");
|
V_DrawFileString(xpos, ypos, 0, "READY?");
|
||||||
|
|
||||||
for (i = 0; i < 2; i++)
|
for (i = 0; i < 2; i++)
|
||||||
{
|
{
|
||||||
UINT8 cy = ypos+16 + (i*10);
|
UINT8 cy = ypos+16 + (i*10);
|
||||||
|
|
||||||
if (p->changeselect == i)
|
if (p->changeselect == i)
|
||||||
V_DrawScaledPatch(xpos+4, cy, 0, W_CachePatchName("M_CURSOR", PU_CACHE));
|
V_DrawScaledPatch(xpos, cy, 0, W_CachePatchName("M_CURSOR", PU_CACHE));
|
||||||
|
|
||||||
V_DrawString(xpos+20, cy, p->changeselect == i ? highlightflags : 0, choices[i]);
|
V_DrawThinString(xpos+16, cy, (p->changeselect == i ? highlightflags : 0)|V_6WIDTHSPACE, choices[i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue