mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Add parentheses
This commit is contained in:
parent
5f4e52b4d8
commit
a13d177a44
1 changed files with 1 additions and 1 deletions
|
|
@ -4767,7 +4767,7 @@ void G_WriteGhostTic(mobj_t *ghost)
|
||||||
if (abs(ghost->x-oldghost.x) > MAXMOM
|
if (abs(ghost->x-oldghost.x) > MAXMOM
|
||||||
|| abs(ghost->y-oldghost.y) > MAXMOM
|
|| abs(ghost->y-oldghost.y) > MAXMOM
|
||||||
|| abs(ghost->z-oldghost.z) > MAXMOM
|
|| abs(ghost->z-oldghost.z) > MAXMOM
|
||||||
|| leveltime & 255 == 1) // Hack to enable slightly nicer resyncing
|
|| (leveltime & 255 == 1)) // Hack to enable slightly nicer resyncing
|
||||||
{
|
{
|
||||||
oldghost.x = ghost->x;
|
oldghost.x = ghost->x;
|
||||||
oldghost.y = ghost->y;
|
oldghost.y = ghost->y;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue