fixed linux build

This commit is contained in:
jeefo 2015-06-24 15:59:53 +03:00
commit 1db285cdcd
2 changed files with 4 additions and 4 deletions

View file

@ -1051,8 +1051,8 @@ private:
bool OutOfBombTimer (void); bool OutOfBombTimer (void);
void SelectLeaderEachTeam (int team); void SelectLeaderEachTeam (int team);
const Vector &CheckThrow (const Vector &start, const Vector &stop); Vector CheckThrow (const Vector &start, const Vector &stop);
const Vector &CheckToss (const Vector &start, const Vector &stop); Vector CheckToss (const Vector &start, const Vector &stop);
Vector CheckBombAudible (void); Vector CheckBombAudible (void);
const Vector &GetAimPosition (void); const Vector &GetAimPosition (void);

View file

@ -5644,7 +5644,7 @@ void Bot::DebugMsg (const char *format, ...)
AddLogEntry (false, LL_DEFAULT, "%s: %s", STRING (pev->netname), buffer); AddLogEntry (false, LL_DEFAULT, "%s: %s", STRING (pev->netname), buffer);
} }
const Vector &Bot::CheckToss (const Vector &start, const Vector &stop) Vector Bot::CheckToss(const Vector &start, const Vector &stop)
{ {
// this function returns the velocity at which an object should looped from start to land near end. // this function returns the velocity at which an object should looped from start to land near end.
// returns null vector if toss is not feasible. // returns null vector if toss is not feasible.
@ -5699,7 +5699,7 @@ const Vector &Bot::CheckToss (const Vector &start, const Vector &stop)
return nadeVelocity * 0.777; return nadeVelocity * 0.777;
} }
const Vector &Bot::CheckThrow (const Vector &start, const Vector &stop) Vector Bot::CheckThrow(const Vector &start, const Vector &stop)
{ {
// this function returns the velocity vector at which an object should be thrown from start to hit end. // this function returns the velocity vector at which an object should be thrown from start to hit end.
// returns null vector if throw is not feasible. // returns null vector if throw is not feasible.