Merge branch 'paperfixes' into 'master'

Nail a likely culprit in papersprite rendering resolving #427 and #375.

Closes #427 and #375

See merge request STJr/SRB2Internal!589
This commit is contained in:
MascaraSnake 2019-12-03 02:16:26 -05:00
commit c1d5f411e0
1 changed files with 1 additions and 1 deletions

View File

@ -1338,7 +1338,7 @@ static void R_ProjectSprite(mobj_t *thing)
return;
if ((range = x2 - x1) <= 0)
range = 1;
return;
scalestep = (yscale2 - yscale)/range;
scalestep = scalestep ? scalestep : 1;