mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-14 13:51:31 +00:00
Realign YOU ARE THIS PLAYER highlight on non-green-res voting
This commit is contained in:
parent
b3f24ecb3e
commit
71c72bf0c5
1 changed files with 2 additions and 2 deletions
|
@ -465,7 +465,7 @@ void Y_IntermissionDrawer(void)
|
||||||
if (data.match.color[i])
|
if (data.match.color[i])
|
||||||
{
|
{
|
||||||
UINT8 *colormap = R_GetTranslationColormap(*data.match.character[i], *data.match.color[i], GTC_CACHE);
|
UINT8 *colormap = R_GetTranslationColormap(*data.match.character[i], *data.match.color[i], GTC_CACHE);
|
||||||
V_DrawMappedPatch(x+16, y-4, 0,facerankprefix[*data.match.character[i]], colormap);
|
V_DrawMappedPatch(x+16, y-4, 0, facerankprefix[*data.match.character[i]], colormap);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (data.match.num[i] == whiteplayer)
|
if (data.match.num[i] == whiteplayer)
|
||||||
|
@ -1115,7 +1115,7 @@ void Y_VoteDrawer(void)
|
||||||
if (!splitscreen && i == consoleplayer)
|
if (!splitscreen && i == consoleplayer)
|
||||||
{
|
{
|
||||||
UINT8 cursorframe = (votetic / 4) % 8;
|
UINT8 cursorframe = (votetic / 4) % 8;
|
||||||
V_DrawScaledPatch(x+24, y+9, 0, W_CachePatchName(va("K_CHILI%d", cursorframe+1), PU_CACHE));
|
V_DrawScaledPatch(x+24, y+9, V_SNAPTOLEFT, W_CachePatchName(va("K_CHILI%d", cursorframe+1), PU_CACHE));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue