mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 00:34:59 +01:00
OSC: Changed gainVCA to gainfader as VCA is already used.
This commit is contained in:
parent
a5b06c5a41
commit
234b06a18c
2 changed files with 4 additions and 4 deletions
|
|
@ -477,7 +477,7 @@ OSC::register_callbacks()
|
|||
REGISTER_CALLBACK (serv, "/ardour/routes/recenable", "ii", route_recenable);
|
||||
REGISTER_CALLBACK (serv, "/ardour/routes/gainabs", "if", route_set_gain_abs);
|
||||
REGISTER_CALLBACK (serv, "/ardour/routes/gaindB", "if", route_set_gain_dB);
|
||||
REGISTER_CALLBACK (serv, "/ardour/routes/gainVCA", "if", route_set_gain_VCA);
|
||||
REGISTER_CALLBACK (serv, "/ardour/routes/gainfader", "if", route_set_gain_fader);
|
||||
REGISTER_CALLBACK (serv, "/ardour/routes/trimabs", "if", route_set_trim_abs);
|
||||
REGISTER_CALLBACK (serv, "/ardour/routes/trimdB", "if", route_set_trim_dB);
|
||||
REGISTER_CALLBACK (serv, "/ardour/routes/pan_stereo_position", "if", route_set_pan_stereo_position);
|
||||
|
|
@ -1115,7 +1115,7 @@ OSC::route_set_gain_dB (int rid, float dB)
|
|||
}
|
||||
|
||||
int
|
||||
OSC::route_set_gain_VCA (int rid, float pos)
|
||||
OSC::route_set_gain_fader (int rid, float pos)
|
||||
{
|
||||
return route_set_gain_abs (rid, slider_position_to_gain_with_max (pos, 2.0));
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue