]> git.mxchange.org Git - flightgear.git/commitdiff
Cygwin fix.
authorcurt <curt>
Tue, 10 Jan 2006 02:49:52 +0000 (02:49 +0000)
committercurt <curt>
Tue, 10 Jan 2006 02:49:52 +0000 (02:49 +0000)
src/Sound/fg_fx.cxx
src/Sound/fg_fx.hxx

index b2196b7a5c0f4bfb8a3243bc9b0da201aff14a27..5840456c376ab28ae4141da2f57b2d776acc7136 100644 (file)
@@ -173,6 +173,7 @@ FGFX::update (double dt)
 void
 FGFX::play_message( SGSoundSample *_sample )
 {
+    _sample->set_volume( 1.0 );
     _samplequeue.push( _sample );
 }
 void
index 61aee36ec7d4e3fd6c4ea85c6efff65289ea2691..08d690c884009f7355b2a66a335d50b3b9df4404 100644 (file)
 #ifndef __FGFX_HXX
 #define __FGFX_HXX 1
 
+#ifdef HAVE_CONFIG_H
+# include <config.h>
+#endif
+
 #include <simgear/compiler.h>
 
 #include <queue>