13
0

Small improvement and change to comply with coding standard

This commit is contained in:
W.P. van Paassen 2016-10-12 20:58:40 +02:00 committed by Paul Davis
parent 5a3fe4aa20
commit 279b19258b

View File

@ -1215,12 +1215,13 @@ CC121::map_gain ()
val = control->internal_to_interface (control->get_value ()); val = control->internal_to_interface (control->get_value ());
} }
float fval = (val* 16384.0); int ival = (int)((val * 16384.0f) + 0.5f);
if (fval <0.0) if (ival < 0) {
fval = 0.0; ival = 0;
else if (fval > 16383.0) }
fval = 16383.0; else if (ival > 16383) {
int ival = (int)(fval + 0.5); ival = 16383;
}
MIDI::byte buf[3]; MIDI::byte buf[3];