]> git.mxchange.org Git - flightgear.git/commitdiff
Patch from Cameron Moore:
authordavid <david>
Thu, 18 Jul 2002 22:33:10 +0000 (22:33 +0000)
committerdavid <david>
Thu, 18 Jul 2002 22:33:10 +0000 (22:33 +0000)
* Rearranged member initializers

src/Sound/fg_sound.cxx

index 5af54d59f78d1ffa1160f4b6288c4a88316cf75f..0278940df3f7038ddfc613f9f54a7971a90d9c91 100644 (file)
@@ -64,14 +64,14 @@ static const struct {
 
 FGSound::FGSound()
   : _sample(NULL),
-    _active(false),
     _condition(NULL),
     _property(NULL),
-    _dt_play(0.0),
-    _dt_stop(0.0),
-    _prev_value(0),
+    _active(false),
     _name(""),
-    _mode(FGSound::ONCE)    
+    _mode(FGSound::ONCE),
+    _prev_value(0),
+    _dt_play(0.0),
+    _dt_stop(0.0)
 {
 }