Skip to content

Commit

Permalink
Fix cinematics off-by-one-pixel draw error (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
erysdren authored Apr 12, 2024
2 parents edfa029 + 1a5366c commit cb6cfe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rott/cin_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ void R_DrawFilmColumn (byte * buf)
int frac, fracstep;
byte *dest;

count = cin_yh - cin_yl;
count = cin_yh - cin_yl + 1;
if (count < 0) return;

dest = buf + ylookup[cin_yl];
Expand Down

0 comments on commit cb6cfe7

Please sign in to comment.