Fix horizontal page scroll for cases where player results are centered

This commit is contained in:
toaster 2023-05-10 01:04:30 +01:00
parent f42192f21d
commit b4a1b7daf3

View file

@ -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;
} }