Skip to content

Commit

Permalink
xrPhysics/PHObject.h: NetInterpolationOFF() now really disables net i…
Browse files Browse the repository at this point in the history
…nterpolation

Remark: NetInterpolationOFF() is unused
  • Loading branch information
ForserX authored and Xottab-DUTY committed Jun 3, 2018
1 parent 3e334e4 commit 728c49f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/xrPhysics/PHObject.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ class CPHObject : public SpatialBase
void Freeze();
void UnFreeze();
IC bool IsFreezed() { return !!(m_flags.test(st_freezed)); }
void NetInterpolationON() { m_flags.set(st_net_interpolation, TRUE); }
void NetInterpolationOFF() { m_flags.set(st_net_interpolation, TRUE); }
void NetInterpolationON() { m_flags.set(st_net_interpolation, true); }
void NetInterpolationOFF() { m_flags.set(st_net_interpolation, false); }
bool NetInterpolation() { return !!(m_flags.test(st_net_interpolation)); }
virtual u16 get_elements_number() = 0;
virtual CPHSynchronize* get_element_sync(u16 element) = 0;
Expand Down

0 comments on commit 728c49f

Please sign in to comment.