Patch from Melchior Franz:
radiostack.cxx:703 says bool light_on = ( outer_blink || middle_blink || inner_blink ); but none of the flags has ever been initialized when this line is first executed.
This commit is contained in:
parent
df74260252
commit
57bccb1827
1 changed files with 3 additions and 0 deletions
|
@ -103,6 +103,9 @@ FGRadioStack::FGRadioStack() :
|
|||
dme_prev_dist(0.0),
|
||||
dme_spd(0.0),
|
||||
dme_ete(0.0),
|
||||
outer_blink(false),
|
||||
middle_blink(false),
|
||||
inner_blink(false),
|
||||
adf_freq(0.0),
|
||||
adf_alt_freq(0.0)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue