]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sound/openal_test3.cxx
Merge branch 'next' of git://gitorious.org/fg/simgear into next
[simgear.git] / simgear / sound / openal_test3.cxx
index 9377dcef6c013f0d1ffceec348de83faeb0ee79a..96a57a0460a9814eb26725d92be4391ca53240f1 100644 (file)
@@ -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");