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:
toaster 2022-09-01 21:32:18 +01:00
parent cd2bb2b300
commit 36797e6bde

View file

@ -1395,20 +1395,20 @@ static void M_DrawCharSelectPreview(UINT8 num)
else if (p->mdepth == CSSTEP_ASKCHANGES)
{
UINT8 i;
char choices[][4] = {"NO", "YES"};
char choices[2][9] = {"All good", "Change"};
INT32 xpos = x+8;
INT32 ypos = y+38;
V_DrawFileString(xpos, ypos, 0, "CHANGES?");
V_DrawFileString(xpos, ypos, 0, "READY?");
for (i = 0; i < 2; i++)
{
UINT8 cy = ypos+16 + (i*10);
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]);
}
}
}