mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-28 04:51:42 +00:00
Fix horizontal page scroll for cases where player results are centered
This commit is contained in:
parent
f42192f21d
commit
b4a1b7daf3
1 changed files with 4 additions and 2 deletions
|
|
@ -526,13 +526,15 @@ void Y_IntermissionDrawer(void)
|
||||||
|
|
||||||
boolean verticalresults = (data.numplayers < 4);
|
boolean verticalresults = (data.numplayers < 4);
|
||||||
|
|
||||||
|
x = xoffset;
|
||||||
|
|
||||||
if (verticalresults)
|
if (verticalresults)
|
||||||
{
|
{
|
||||||
x = (BASEVIDWIDTH/2) - 61;
|
x += (BASEVIDWIDTH/2) - 61;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
x = 29 + xoffset;
|
x += 29;
|
||||||
heightcount /= 2;
|
heightcount /= 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue