mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
the given abscissa and forbid negative values Change-Id: Iaae39e575c0e2de4993a558e234717a839905872
14 lines
319 B
C++
14 lines
319 B
C++
#include "go_to_parameter_controller.h"
|
|
#include "../app.h"
|
|
#include <assert.h>
|
|
|
|
namespace Sequence {
|
|
|
|
bool GoToParameterController::setParameterAtIndex(int parameterIndex, float f) {
|
|
assert(parameterIndex == 0);
|
|
return Shared::FunctionGoToParameterController::setParameterAtIndex(parameterIndex, roundf(f));
|
|
}
|
|
|
|
}
|
|
|