From: ehofman Date: Thu, 29 Oct 2009 17:03:16 +0000 (+0000) Subject: pass the float pointer to the isNaN function instead of the SGVec3 type X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=145a7fa1467c028f80e141a324950b2c47e34b7b;p=simgear.git pass the float pointer to the isNaN function instead of the SGVec3 type --- diff --git a/simgear/sound/sample_group.cxx b/simgear/sound/sample_group.cxx index eed424c1..a5d19641 100644 --- a/simgear/sound/sample_group.cxx +++ b/simgear/sound/sample_group.cxx @@ -384,9 +384,9 @@ void SGSampleGroup::update_sample_config( SGSoundSample *sample ) { if (dist(position, _smgr->get_position()) > 10000) printf("source and listener distance greater than 20km!\n"); - if (isNaN(position)) printf("NaN in source position\n"); - if (isNaN(orientation)) printf("NaN in source orientation\n"); - if (isNaN(velocity)) printf("NaN in source velocity\n"); + if (isNaN(toVec3f(position).data())) printf("NaN in source position\n"); + if (isNaN(orientation.data())) printf("NaN in source orientation\n"); + if (isNaN(velocity.data())) printf("NaN in source velocity\n"); unsigned int source = sample->get_source(); alSourcefv( source, AL_POSITION, toVec3f(position).data() );