mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
15 lines
340 B
C++
15 lines
340 B
C++
#include "go_to_parameter_controller.h"
|
|
#include "../app.h"
|
|
#include <assert.h>
|
|
#include <cmath>
|
|
|
|
namespace Sequence {
|
|
|
|
bool GoToParameterController::setParameterAtIndex(int parameterIndex, float f) {
|
|
assert(parameterIndex == 0);
|
|
return Shared::FunctionGoToParameterController::setParameterAtIndex(parameterIndex, std::round(f));
|
|
}
|
|
|
|
}
|
|
|