Skip to content

Commit

Permalink
Fix issue #110 GxTuner Issues
Browse files Browse the repository at this point in the history
  • Loading branch information
brummer10 committed May 26, 2022
1 parent 1f50dc8 commit b1c6862
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions trunk/src/LV2/xputty/widgets/xtuner_private.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ static float _adjust_scale(Widget_t *w, float fvis) {
if((int)xt->temperament == 0) return fvis;
else if((int)xt->temperament == 1) return fvis + 0.25;
else if((int)xt->temperament == 2) return fvis;
else if((int)xt->temperament == 3) return fvis + 0.23;
else if((int)xt->temperament == 4) return fvis;
else if((int)xt->temperament == 5) return fvis - 0.25;
else if((int)xt->temperament == 3) return fvis + 0.05;
else if((int)xt->temperament == 4) return fvis + 0.02;
else if((int)xt->temperament == 5) return fvis + 0.095;
else return fvis;

}
Expand Down

0 comments on commit b1c6862

Please sign in to comment.