mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-09 20:18:17 +03:00
Use a const float* for PathDelta()
This commit is contained in:
parent
a5532ad67b
commit
c7c3fcd0e0
3 changed files with 4 additions and 4 deletions
|
@ -5877,7 +5877,7 @@ Move on path with squad.
|
|||
*/
|
||||
bool Actor::MoveOnPathWithSquad(void)
|
||||
{
|
||||
float* pvMyDir, *pvHisDir;
|
||||
const float* pvMyDir, *pvHisDir;
|
||||
vec2_t vDelta;
|
||||
Sentient* pSquadMate;
|
||||
float fIntervalSquared;
|
||||
|
@ -6132,7 +6132,7 @@ bool Actor::MoveToPatrolCurrentNode(void)
|
|||
return false;
|
||||
}
|
||||
|
||||
float *delta = PathDelta();
|
||||
const float *delta = PathDelta();
|
||||
return VectorLength2DSquared(delta) <= m_fMoveDoneRadiusSquared;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -460,7 +460,7 @@ bool SimpleActor::PathGoalSlowdownStarted(void) const
|
|||
return m_fPathGoalTime >= level.time;
|
||||
}
|
||||
|
||||
float *SimpleActor::PathDelta(void) const
|
||||
const float *SimpleActor::PathDelta(void) const
|
||||
{
|
||||
return m_Path.CurrentDelta();
|
||||
}
|
||||
|
|
|
@ -172,7 +172,7 @@ public:
|
|||
float PathDist(void) const;
|
||||
bool PathHasCompleteLookahead(void) const;
|
||||
Vector PathGoal(void) const;
|
||||
float *PathDelta(void) const;
|
||||
const float *PathDelta(void) const;
|
||||
bool PathGoalSlowdownStarted(void) const;
|
||||
void SetDest(vec3_t dest);
|
||||
void StopTurning(void);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue