Remove halfviewwidth

- Why I thought I needed this variable in addition to centerx has
  long ago left my memory.
This commit is contained in:
Randy Heit 2016-04-27 22:49:36 -05:00
commit 44adff459a
4 changed files with 1 additions and 4 deletions

View file

@ -1525,7 +1525,7 @@ void R_DrawNormalPlane (visplane_t *pl, double _xscale, double _yscale, fixed_t
ystepscale = (DWORD)(-(SDWORD)ystepscale);
}
int x = pl->right - halfviewwidth - 1;
int x = pl->right - centerx;
planeang += 90;
basexfrac = xs_RoundToInt(xscale * planeang.Cos()) + x*xstepscale;
baseyfrac = xs_RoundToInt(yscale * -planeang.Sin()) + x*ystepscale;