From: ehofman Date: Mon, 23 Nov 2009 10:31:53 +0000 (+0000) Subject: fix test programs X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5b28b024ae7f10371d4afd2f355db558c00d1966;p=simgear.git fix test programs --- diff --git a/simgear/sound/openal_test2.cxx b/simgear/sound/openal_test2.cxx index c28957b8..eb0da57e 100644 --- a/simgear/sound/openal_test2.cxx +++ b/simgear/sound/openal_test2.cxx @@ -11,6 +11,7 @@ #include "soundmgr_openal.hxx" +SGGeod pos = SGGeod::fromDeg(0,0); int main( int argc, char *argv[] ) { SGSampleGroup *sgr; @@ -22,7 +23,7 @@ int main( int argc, char *argv[] ) { smgr->init(); sgr = smgr->find("default", true); smgr->set_volume(0.9); - smgr->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(0,0)) ); + smgr->set_position( SGVec3d::fromGeod(pos), pos ); smgr->activate(); SGSoundSample *sample1 = new SGSoundSample( SRC_DIR, "jet.wav" ); diff --git a/simgear/sound/openal_test3.cxx b/simgear/sound/openal_test3.cxx index 9377dcef..96a57a04 100644 --- a/simgear/sound/openal_test3.cxx +++ b/simgear/sound/openal_test3.cxx @@ -15,6 +15,7 @@ int main( int argc, char *argv[] ) { SGSampleGroup *sgr; SGSoundMgr *smgr; + SGGeod pos; smgr = new SGSoundMgr; @@ -38,8 +39,9 @@ int main( int argc, char *argv[] ) { sleep(1); printf("source at lat,lon = (10,-10), listener at (9.99,-9.99)\n"); + pos = SGGeod::fromDeg(9.99,-9.99); sample1->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(10,-10)) ); - smgr->set_position( SGVec3d::fromGeod(SGGeod::fromDeg(9.99,-9.99)) ); + smgr->set_position( SGVec3d::fromGeod(pos), pos ); sample1->play_looped(); smgr->update(1.0); printf("playing sample\n");