mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Remove FRACUNIT/2
# Conflicts: # src/r_main.c
This commit is contained in:
parent
1f5eb2c442
commit
2cfdf80fca
1 changed files with 1 additions and 1 deletions
|
|
@ -1054,7 +1054,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[s]);
|
||||
yslopetab[s][i] = FixedDiv(centerx*FRACUNIT, dy);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue