Browse Source

Stereo Mixer was loading pan-pots the wrong way round

master
edgeeffect 22 years ago
parent
commit
675bb7b66e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      SpiralSound/Plugins/StereoMixerPlugin/StereoMixerPluginGUI.C

+ 1
- 1
SpiralSound/Plugins/StereoMixerPlugin/StereoMixerPluginGUI.C View File

@@ -68,7 +68,7 @@ void StereoMixerPluginGUI::UpdateValues (SpiralPlugin *o) {

for (int n=0; n<NUM_CHANNELS; n++) {
m_Chan[n]->value (2.0f - Plugin->GetChannel (n));
m_Pan[n]->value (Plugin->GetPan (n));
m_Pan[n]->value (1.0f - Plugin->GetPan (n));
}
}



Loading…
Cancel
Save