Patch from Cameron Moore:
* Rearranged member initializers
This commit is contained in:
parent
973ffbf289
commit
35e67c3a31
1 changed files with 5 additions and 5 deletions
|
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue