Mixer/Module_Parameter_Edtior: Silence compiler warnings.

This commit is contained in:
Jonathan Moore Liles 2010-02-24 18:41:01 -06:00
parent c7ae81f035
commit 0f0933f6d0
1 changed files with 2 additions and 2 deletions

View File

@ -134,9 +134,9 @@ Module_Parameter_Editor::make_controls ( void )
/* these are for detecting related parameter groups which can be
better represented by a single control */
int azimuth_port_number = -1;
float azimuth_value;
float azimuth_value = 0.0f;
int elevation_port_number = -1;
float elevation_value;
float elevation_value = 0.0f;
for ( unsigned int i = 0; i < module->control_input.size(); ++i )
{