Fix uninitialized member variable.
This commit is contained in:
parent
ceea3e3311
commit
06d4dc0ede
@ -91,6 +91,7 @@ AudioSource::AudioSource (Session& s, const string& name)
|
||||
, peak_leftover_cnt (0)
|
||||
, peak_leftover_size (0)
|
||||
, peak_leftovers (0)
|
||||
, peak_leftover_sample (0)
|
||||
, _first_run (true)
|
||||
, _last_scale (0.0)
|
||||
, _last_map_off (0)
|
||||
@ -107,6 +108,7 @@ AudioSource::AudioSource (Session& s, const XMLNode& node)
|
||||
, peak_leftover_cnt (0)
|
||||
, peak_leftover_size (0)
|
||||
, peak_leftovers (0)
|
||||
, peak_leftover_sample (0)
|
||||
, _first_run (true)
|
||||
, _last_scale (0.0)
|
||||
, _last_map_off (0)
|
||||
|
Loading…
Reference in New Issue
Block a user