Browse Source

Timeline: Fix uninitialized value in Control_Sequence.

tags/non-daw-v1.2.0
Jonathan Moore Liles 13 years ago
parent
commit
e219e6766e
1 changed files with 1 additions and 7 deletions
  1. +1
    -7
      timeline/src/Control_Sequence.C

+ 1
- 7
timeline/src/Control_Sequence.C View File

@@ -50,18 +50,12 @@ Control_Sequence::Control_Sequence ( Track *track ) : Sequence( 0 )


_track = track; _track = track;


_osc_output = 0;
_output = 0;

_mode = CV;

mode( OSC ); mode( OSC );


if ( track ) if ( track )
track->add( this ); track->add( this );


log_create(); log_create();

} }




@@ -116,7 +110,7 @@ Control_Sequence::init ( void )
_highlighted = false; _highlighted = false;
_output = NULL; _output = NULL;
_osc_output = NULL; _osc_output = NULL;
// color( );
_mode = (Mode)-1;


interpolation( Linear ); interpolation( Linear );
} }


Loading…
Cancel
Save