Browse Source

Mixer/Module_Parameter_Edtior: Silence compiler warnings.

tags/non-daw-v1.1.0
Jonathan Moore Liles 15 years ago
parent
commit
0f0933f6d0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      mixer/src/Module_Parameter_Editor.C

+ 2
- 2
mixer/src/Module_Parameter_Editor.C 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 )
{


Loading…
Cancel
Save