Timeline: Fix uninitialized value in Control_Sequence.

This commit is contained in:
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; _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 );
} }