| 642 | } |
| 643 | |
| 644 | float* FloatSlider::GetModifyValue() |
| 645 | { |
| 646 | if (!TheSynth->IsLoadingModule() && mModulator && mModulator->Active() && mModulator->CanAdjustRange()) |
| 647 | return &mModulator->GetMax(); |
| 648 | if (mIsSmoothing) |
| 649 | return &mSmoothTarget; |
| 650 | return mVar; |
| 651 | } |
| 652 | |
| 653 | void FloatSlider::Double() |
| 654 | { |
nothing calls this directly
no test coverage detected