Fix a compiler warning (member initialization order in constructor.)
This commit is contained in:
parent
311b85a11d
commit
ac5e874523
1 changed files with 3 additions and 3 deletions
|
@ -40,10 +40,10 @@
|
||||||
|
|
||||||
|
|
||||||
FGFX::FGFX () :
|
FGFX::FGFX () :
|
||||||
_volume( fgGetNode("/sim/sound/volume") ),
|
|
||||||
_pause( fgGetNode("/sim/sound/pause") ),
|
|
||||||
last_pause( true ),
|
last_pause( true ),
|
||||||
last_volume( 0.0 )
|
last_volume( 0.0 ),
|
||||||
|
_pause( fgGetNode("/sim/sound/pause") ),
|
||||||
|
_volume( fgGetNode("/sim/sound/volume") )
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue