mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-02-17 01:31:47 +00:00
make base build with Visual Studio 14
This commit is contained in:
parent
db461045bf
commit
61aee9ed29
3 changed files with 3 additions and 3 deletions
|
@ -140,7 +140,7 @@ void idSecurityCamera::Spawn( void ) {
|
|||
}
|
||||
|
||||
negativeSweep = ( sweepAngle < 0 ) ? true : false;
|
||||
sweepAngle = abs( sweepAngle );
|
||||
sweepAngle = idMath::Fabs( sweepAngle );
|
||||
|
||||
scanFovCos = cos( scanFov * idMath::PI / 360.0f );
|
||||
|
||||
|
|
|
@ -2148,7 +2148,7 @@ bool idAI::NewWanderDir( const idVec3 &dest ) {
|
|||
}
|
||||
|
||||
// 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 ];
|
||||
d[ 1 ] = d[ 2 ];
|
||||
d[ 2 ] = tdir;
|
||||
|
|
Loading…
Reference in a new issue