mirror of
https://github.com/luanti-org/luanti.git
synced 2025-07-02 16:38:41 +00:00
Fix fabs() brainfart
This commit is contained in:
parent
2e60593c5b
commit
d228f1b658
1 changed files with 2 additions and 2 deletions
|
@ -934,7 +934,7 @@ public:
|
|||
updateTextures("");
|
||||
}
|
||||
}
|
||||
if(fabs(m_prop.automatic_rotate > 0.001f)){
|
||||
if(fabs(m_prop.automatic_rotate) > 0.001){
|
||||
m_yaw += dtime * m_prop.automatic_rotate * 180 / PI;
|
||||
updateNodePos();
|
||||
}
|
||||
|
@ -1086,7 +1086,7 @@ public:
|
|||
m_position = readV3F1000(is);
|
||||
m_velocity = readV3F1000(is);
|
||||
m_acceleration = readV3F1000(is);
|
||||
if(fabs(m_prop.automatic_rotate < 0.001f))
|
||||
if(fabs(m_prop.automatic_rotate) < 0.001)
|
||||
m_yaw = readF1000(is);
|
||||
bool do_interpolate = readU8(is);
|
||||
bool is_end_position = readU8(is);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue