mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Profile name appears over PLAYER on charsel screen when profile is set.
This commit is contained in:
parent
9de7f2393b
commit
d118b69c43
1 changed files with 9 additions and 1 deletions
|
|
@ -1183,7 +1183,15 @@ static void M_DrawCharSelectPreview(UINT8 num)
|
|||
|
||||
V_DrawScaledPatch(x+9, y+2, 0, W_CachePatchName("FILEBACK", PU_CACHE));
|
||||
V_DrawScaledPatch(x, y+2, 0, W_CachePatchName(va("CHARSEL%c", letter), PU_CACHE));
|
||||
V_DrawFileString(x+16, y+2, 0, "PLAYER");
|
||||
if (p->mdepth > CSSTEP_PROFILE)
|
||||
{
|
||||
profile_t *pr = PR_GetProfile(p->profilen);
|
||||
V_DrawCenteredFileString(x+16+18, y+2, 0, pr->profilename);
|
||||
}
|
||||
else
|
||||
{
|
||||
V_DrawFileString(x+16, y+2, 0, "PLAYER");
|
||||
}
|
||||
|
||||
// Profile selection
|
||||
if (p->mdepth == CSSTEP_PROFILE)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue