Timeline: Fix uninitialized value in Control_Sequence.

pull/3/head
Jonathan Moore Liles 2012-06-09 19:51:02 -07:00
parent af3698bebc
commit e219e6766e
1 changed files with 1 additions and 7 deletions

View File

@ -50,18 +50,12 @@ Control_Sequence::Control_Sequence ( Track *track ) : Sequence( 0 )
_track = track;
_osc_output = 0;
_output = 0;
_mode = CV;
mode( OSC );
if ( track )
track->add( this );
log_create();
}
@ -116,7 +110,7 @@ Control_Sequence::init ( void )
_highlighted = false;
_output = NULL;
_osc_output = NULL;
// color( );
_mode = (Mode)-1;
interpolation( Linear );
}