mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix issues with the level platter in nonstandard resolutions.
This commit is contained in:
parent
28d2949331
commit
9cb3b395eb
1 changed files with 2 additions and 2 deletions
|
|
@ -4425,14 +4425,14 @@ static void M_DrawLevelPlatterMenu(void)
|
|||
V_DrawPatchFill(W_CachePatchName("SRB2BACK", PU_CACHE));
|
||||
|
||||
// finds row at top of the screen
|
||||
while (y > 0)
|
||||
while (y > -8)
|
||||
{
|
||||
iter = ((iter == 0) ? levelselect.numrows-1 : iter-1);
|
||||
y -= lsvseperation(iter);
|
||||
}
|
||||
|
||||
// draw from top to bottom
|
||||
while (y < 200)
|
||||
while (y < (vid.height/vid.dupy))
|
||||
{
|
||||
M_DrawLevelPlatterRow(iter, y);
|
||||
y += lsvseperation(iter);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue