Fixed compilation errors on Unix

This commit is contained in:
L 2023-02-01 00:28:40 +01:00
parent b8c56cc23c
commit d4faf0c0e0
99 changed files with 1385 additions and 1659 deletions

View file

@ -642,7 +642,7 @@ void ActorPath::Shorten
{
m_path->point[ 0 ] += m_path->dir[ 0 ] * -fDistRemove;
m_path->point[ 1 ] += m_path->dir[ 1 ] * -fDistRemove;
m_path->point[ 2 ] += m_path->dir[ 2 ] * -fDistRemove;
m_path->point[ 2 ] += m_path->point[ 2 ] * -fDistRemove;
m_path->dist -= fDistRemove;
}
else