1
0
Fork 0

Fix a compiler warning (member initialization order in constructor.)

This commit is contained in:
curt 2006-01-10 15:06:17 +00:00
parent 311b85a11d
commit ac5e874523

View file

@ -40,10 +40,10 @@
FGFX::FGFX () :
_volume( fgGetNode("/sim/sound/volume") ),
_pause( fgGetNode("/sim/sound/pause") ),
last_pause( true ),
last_volume( 0.0 )
last_volume( 0.0 ),
_pause( fgGetNode("/sim/sound/pause") ),
_volume( fgGetNode("/sim/sound/volume") )
{
}