diff options
-rw-r--r-- | code/client/snd_openal.c | 15 | ||||
-rw-r--r-- | code/qcommon/q_math.c | 20 | ||||
-rw-r--r-- | code/qcommon/q_shared.h | 1 |
3 files changed, 27 insertions, 9 deletions
diff --git a/code/client/snd_openal.c b/code/client/snd_openal.c index 6923186..19ec33c 100644 --- a/code/client/snd_openal.c +++ b/code/client/snd_openal.c @@ -492,15 +492,12 @@ S_AL_SanitiseVector #define S_AL_SanitiseVector(v) _S_AL_SanitiseVector(v,__LINE__) static void _S_AL_SanitiseVector( vec3_t v, int line ) { - // NaNs can't be compared for equality, thus always fail this test - if( v[ 0 ] == v[ 0 ] && - v[ 1 ] == v[ 1 ] && - v[ 2 ] == v[ 2 ] ) - return; - - Com_DPrintf( S_COLOR_YELLOW "WARNING: vector with one or more NaN components " - "being passed to OpenAL at %s:%d -- zeroing\n", __FILE__, line ); - VectorClear( v ); + if( Q_isnan( v[ 0 ] ) || Q_isnan( v[ 1 ] ) || Q_isnan( v[ 2 ] ) ) + { + Com_DPrintf( S_COLOR_YELLOW "WARNING: vector with one or more NaN components " + "being passed to OpenAL at %s:%d -- zeroing\n", __FILE__, line ); + VectorClear( v ); + } } /* diff --git a/code/qcommon/q_math.c b/code/qcommon/q_math.c index de90b8b..5ddd81f 100644 --- a/code/qcommon/q_math.c +++ b/code/qcommon/q_math.c @@ -1252,4 +1252,24 @@ void PerpendicularVector( vec3_t dst, const vec3_t src ) VectorNormalize( dst ); } +/* +================ +Q_isnan +Don't pass doubles to this +================ +*/ +int Q_isnan( float x ) +{ + union + { + float f; + unsigned int i; + } t; + + t.f = x; + t.i &= 0x7FFFFFFF; + t.i = 0x7F800000 - t.i; + + return (int)( (unsigned int)t.i >> 31 ); +} diff --git a/code/qcommon/q_shared.h b/code/qcommon/q_shared.h index a9388e7..e80074d 100644 --- a/code/qcommon/q_shared.h +++ b/code/qcommon/q_shared.h @@ -557,6 +557,7 @@ void MakeNormalVectors( const vec3_t forward, vec3_t right, vec3_t up ); void MatrixMultiply(float in1[3][3], float in2[3][3], float out[3][3]); void AngleVectors( const vec3_t angles, vec3_t forward, vec3_t right, vec3_t up); void PerpendicularVector( vec3_t dst, const vec3_t src ); +int Q_isnan( float x ); //============================================= |