mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
initialize some uninitialized variables
This commit is contained in:
parent
2cab506f00
commit
3f75d78848
2 changed files with 2 additions and 1 deletions
|
|
@ -96,6 +96,7 @@ Route::Route (Session& sess, string name, Flag flg, DataType default_type)
|
|||
, _have_internal_generator (false)
|
||||
, _solo_safe (false)
|
||||
, _default_type (default_type)
|
||||
, _order_key (0)
|
||||
, _has_order_key (false)
|
||||
, _remote_control_id (0)
|
||||
, _in_configure_processors (false)
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ class MidiClockTicker::Position : public Timecode::BBT_Time
|
|||
{
|
||||
public:
|
||||
|
||||
Position() : speed(0.0f), frame(0) { }
|
||||
Position() : speed(0.0f), frame(0), midi_beats(0) { }
|
||||
~Position() { }
|
||||
|
||||
/** Sync timing information taken from the given Session
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue