mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-02-21 03:11:24 +00:00
Update arrow rendering to use simple character function rather than overkill string function.
This commit is contained in:
parent
a7bb16ada9
commit
e01f2ff096
1 changed files with 2 additions and 2 deletions
|
@ -5519,7 +5519,7 @@ static void M_DrawStatsMaps(int location)
|
|||
boolean dotopname = true, dobottomarrow = (location < statsMax);
|
||||
|
||||
if (location)
|
||||
V_DrawString(10, y-(skullAnimCounter/5), highlightflags, "\x1A");
|
||||
V_DrawCharacter(10, y-(skullAnimCounter/5), '\x1A' | highlightflags, false);
|
||||
|
||||
while (statsMapList[++i] != -1)
|
||||
{
|
||||
|
@ -5601,7 +5601,7 @@ static void M_DrawStatsMaps(int location)
|
|||
}
|
||||
bottomarrow:
|
||||
if (dobottomarrow)
|
||||
V_DrawString(10, y-8 + (skullAnimCounter/5), highlightflags, "\x1B");
|
||||
V_DrawCharacter(10, y-8 + (skullAnimCounter/5), '\x1B' | highlightflags, false);
|
||||
}
|
||||
|
||||
static void M_DrawLevelStats(void)
|
||||
|
|
Loading…
Reference in a new issue