Skip to content

Commit

Permalink
fix bunny scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
rfomin committed Jun 21, 2024
1 parent 477fc42 commit b9630c6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/f_finale.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,10 @@ void F_BunnyScroll (void)

if (SHORT(p2->width) == SCREENWIDTH)
{
V_FillRect(0, 0, video.unscaledw, SCREENHEIGHT, v_darkest_color);
V_FillRect(0, 0, video.deltaw, SCREENHEIGHT, v_darkest_color);
V_FillRect(video.deltaw + SCREENWIDTH, 0,
video.unscaledw - (video.deltaw + SCREENWIDTH), SCREENHEIGHT,
v_darkest_color);
}

if (finalecount < 1130)
Expand Down

0 comments on commit b9630c6

Please sign in to comment.