mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-09 00:02:36 +02:00
19 lines
301 B
C
19 lines
301 B
C
/* sliderdata.c -- shared data for slider abstraction in nyquist
|
|
*
|
|
* Roger B. Dannenberg
|
|
* Jan 2013
|
|
*/
|
|
|
|
#include "sliderdata.h"
|
|
|
|
float slider_array[SLIDERS_MAX];
|
|
|
|
void set_slider(int index, float value)
|
|
{
|
|
if (index >= 0 && index < SLIDERS_MAX) {
|
|
slider_array[index] = value;
|
|
}
|
|
}
|
|
|
|
|