From ad24ce02e7d491f5d82f5941a096951622a1b9a5 Mon Sep 17 00:00:00 2001 From: Erik Hofman Date: Sun, 12 Apr 2020 14:53:16 +0200 Subject: [PATCH] Remove some debugging statements --- simgear/sound/soundmgr_aeonwave.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/simgear/sound/soundmgr_aeonwave.cxx b/simgear/sound/soundmgr_aeonwave.cxx index 6af3ffbb..ae0ef3d0 100644 --- a/simgear/sound/soundmgr_aeonwave.cxx +++ b/simgear/sound/soundmgr_aeonwave.cxx @@ -298,7 +298,6 @@ void SGSoundMgr::update( double dt ) SGVec3d velocity = SGVec3d::zeros(); if ( _velocity[0] || _velocity[1] || _velocity[2] ) { velocity = hlOr.backTransform(_velocity*SG_FEET_TO_METER); -printf("lst vel: %f\n", length(velocity)); } aax::Vector vel( toVec3f(velocity).data() ); TRY( d->_aax.sensor_velocity(vel) ); @@ -620,7 +619,6 @@ void SGSoundMgr::update_sample_config( SGSoundSample *sample, SGVec3d& position, aax::Vector64 pos = position.data(); aax::Vector ori = orientation.data(); aax::Vector vel = velocity.data(); -printf("src vel: %f\n", length(velocity)); aax::Matrix64 mtx(pos, ori); TRY( emitter.matrix(mtx) );