]> git.mxchange.org Git - flightgear.git/blobdiff - src/Sound/fg_fx.cxx
allow sound effects in the configuration file to be added to the 'avionics' sample...
[flightgear.git] / src / Sound / fg_fx.cxx
index 4d879bff26d90ef4a441dfb72cfb371d81624aef..abf3a2678668dbb997b896c3010f629b5266e15d 100644 (file)
@@ -47,6 +47,7 @@ FGFX::FGFX ( SGSoundMgr *smgr, const string &refname ) :
     SGSampleGroup::_smgr = smgr;
     SGSampleGroup::_refname = refname;
     SGSampleGroup::_smgr->add(this, refname);
+    _avionics = _smgr->find("avionics", true);
 }
 
 
@@ -91,7 +92,7 @@ FGFX::init()
   
             try {
                 sound->init(globals->get_props(), node->getChild(i), this,
-                            globals->get_fg_root());
+                            _avionics, globals->get_fg_root());
   
                 _sound.push_back(sound);
             } catch ( sg_exception &e ) {