gerard robin wrote:
On ven 23 novembre 2007, Jon Stockill wrote:
Durk Talsma wrote:
This is a quick note to everybody: I'm planning to build an "official"
FlightGear pre-release tonight. I did a full dress rehearsal last sunday
and that all seemed to work well, but I still needed Curt's okay for a
few remaining issues. In the mean time, if there are any *urgent* patches
remaining please try to get them into CVS ASAP.
With Fedora 8 (daily updated)
Built without problem Tested with c172p it fly :) :)

Only 2 remarks:

=>1 On KSFO scenery/animation there is a 747 which has lost his way :) standing half on the runway here http://pagesperso-orange.fr/GRTux/747-out.jpg

=>2 An old bug if we ask for Menu/Sound Configuration/Mute Sound and behind we make pause (key "p") we get again the sound

Regards

Hello

I'm just using the latest CVS
Wrote a quick patch for #2, seems to work fine here, doesn't preserve mute through a reset though. It's my first patch so make sure i'm not introducing new bugs and stuff.

Also the 737 is creating a log file in my home dir, someone should take a look at it if it's going to be in the base package.

Cheers
Tiago


? muteunpausefix.diff
Index: fg_props.cxx
===================================================================
RCS file: /var/cvs/FlightGear-0.9/source/src/Main/fg_props.cxx,v
retrieving revision 1.31
diff -u -p -u -r1.31 fg_props.cxx
--- fg_props.cxx        27 Oct 2007 17:16:00 -0000      1.31
+++ fg_props.cxx        23 Nov 2007 19:36:34 -0000
@@ -233,7 +233,8 @@ setFreeze (bool f)
         if ( f ) {
             s->pause();
         } else {
-            s->resume();
+           if(fgGetNode("/sim/sound/pause", true)->getBoolValue()==false)
+               s->resume();
         }
     }
 }
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to