mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-11 20:31:06 +00:00
Quick fix for attack/protect being too big
This commit is contained in:
parent
41b684e63e
commit
5a1e40f987
1 changed files with 8 additions and 3 deletions
11
src/k_kart.c
11
src/k_kart.c
|
@ -6941,10 +6941,15 @@ static void K_drawBattleFullscreen(void)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (stplyr == &players[secondarydisplayplayer])
|
||||
x = BASEVIDWIDTH-96;
|
||||
if (stplyr->exiting)
|
||||
{
|
||||
if (stplyr == &players[secondarydisplayplayer])
|
||||
x = BASEVIDWIDTH-96;
|
||||
else
|
||||
x = 96;
|
||||
}
|
||||
else
|
||||
x = 96;
|
||||
scale /= 2;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue