mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-01-26 03:00:55 +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
|
@ -6940,12 +6940,17 @@ static void K_drawBattleFullscreen(void)
|
||||||
x = BASEVIDWIDTH/4;
|
x = BASEVIDWIDTH/4;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
if (stplyr->exiting)
|
||||||
{
|
{
|
||||||
if (stplyr == &players[secondarydisplayplayer])
|
if (stplyr == &players[secondarydisplayplayer])
|
||||||
x = BASEVIDWIDTH-96;
|
x = BASEVIDWIDTH-96;
|
||||||
else
|
else
|
||||||
x = 96;
|
x = 96;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
scale /= 2;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (stplyr->exiting)
|
if (stplyr->exiting)
|
||||||
|
|
Loading…
Reference in a new issue