mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
Fix uninitialized member variable.
This commit is contained in:
parent
ceea3e3311
commit
06d4dc0ede
1 changed files with 2 additions and 0 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue