mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-29 07:41:47 +00:00
Fix software dithering
Rounding view angles to degrees fixes undefined software texture filter behaviour.
This commit is contained in:
parent
72de1d45f8
commit
26194c76cf
1 changed files with 1 additions and 1 deletions
|
@ -1332,7 +1332,7 @@ RE_RenderFrame (refdef_t *fd)
|
||||||
// compare current position with old
|
// compare current position with old
|
||||||
if (vid_buffer_width <= 640 ||
|
if (vid_buffer_width <= 640 ||
|
||||||
!VectorCompareRound(fd->vieworg, lastvieworg) ||
|
!VectorCompareRound(fd->vieworg, lastvieworg) ||
|
||||||
!VectorCompare(fd->viewangles, lastviewangles))
|
!VectorCompareRound(fd->viewangles, lastviewangles))
|
||||||
{
|
{
|
||||||
fastmoving = true;
|
fastmoving = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue