mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2025-02-17 17:41:48 +00:00
make base build with Visual Studio 14
This commit is contained in:
parent
99bbd70af5
commit
5baf5deca7
3 changed files with 3 additions and 3 deletions
|
@ -140,7 +140,7 @@ void idSecurityCamera::Spawn( void ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
negativeSweep = ( sweepAngle < 0 ) ? true : false;
|
negativeSweep = ( sweepAngle < 0 ) ? true : false;
|
||||||
sweepAngle = abs( sweepAngle );
|
sweepAngle = idMath::Fabs( sweepAngle );
|
||||||
|
|
||||||
scanFovCos = cos( scanFov * idMath::PI / 360.0f );
|
scanFovCos = cos( scanFov * idMath::PI / 360.0f );
|
||||||
|
|
||||||
|
|
|
@ -2148,7 +2148,7 @@ bool idAI::NewWanderDir( const idVec3 &dest ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// try other directions
|
// try other directions
|
||||||
if ( ( gameLocal.random.RandomInt() & 1 ) || abs( deltay ) > abs( deltax ) ) {
|
if ( ( gameLocal.random.RandomInt() & 1 ) || idMath::Fabs( deltay ) > idMath::Fabs( deltax ) ) {
|
||||||
tdir = d[ 1 ];
|
tdir = d[ 1 ];
|
||||||
d[ 1 ] = d[ 2 ];
|
d[ 1 ] = d[ 2 ];
|
||||||
d[ 2 ] = tdir;
|
d[ 2 ] = tdir;
|
||||||
|
|
Loading…
Reference in a new issue