Skip to content
Snippets Groups Projects
Commit 75397c34 authored by Lactozilla's avatar Lactozilla :speech_balloon:
Browse files

Remove FRACUNIT/2

parent 5e1e587e
No related branches found
No related tags found
1 merge request!1517I have no idea why software does this.
......@@ -955,7 +955,7 @@ void R_ExecuteSetViewSize(void)
j = viewheight*16;
for (i = 0; i < j; i++)
{
dy = ((i - viewheight*8)<<FRACBITS) + FRACUNIT/2;
dy = (i - viewheight*8)<<FRACBITS;
dy = FixedMul(abs(dy), fovtan);
yslopetab[i] = FixedDiv(centerx*FRACUNIT, dy);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment