mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-03 06:33:14 +00:00
Since intermission is bordered, don't do widescreen accomodation for the Standings xoffset slide
This commit is contained in:
parent
39682a241d
commit
9179e6fd86
1 changed files with 2 additions and 2 deletions
|
|
@ -1261,11 +1261,11 @@ void Y_IntermissionDrawer(void)
|
||||||
const INT32 count = (intertic - sorttic);
|
const INT32 count = (intertic - sorttic);
|
||||||
|
|
||||||
if (count < 8)
|
if (count < 8)
|
||||||
x = -((count * vid.width) / (8 * vid.dupx));
|
x = -((count * BASEVIDWIDTH) / 8);
|
||||||
else if (count == 8)
|
else if (count == 8)
|
||||||
goto skiptallydrawer;
|
goto skiptallydrawer;
|
||||||
else if (count < 16)
|
else if (count < 16)
|
||||||
x = (((16 - count) * vid.width) / (8 * vid.dupx));
|
x = (((16 - count) * BASEVIDWIDTH) / 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Draw the header bar
|
// Draw the header bar
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue