Fix mismatched initialisation order.
This commit is contained in:
parent
dbad29f388
commit
c95c221493
@ -46,10 +46,10 @@ public:
|
|||||||
MPControl (T initial, const std::string& name, PBD::Controllable::Flag flag,
|
MPControl (T initial, const std::string& name, PBD::Controllable::Flag flag,
|
||||||
float lower = 0.0f, float upper = 1.0f)
|
float lower = 0.0f, float upper = 1.0f)
|
||||||
: PBD::Controllable (name, flag)
|
: PBD::Controllable (name, flag)
|
||||||
, _normal (initial)
|
|
||||||
, _value (initial)
|
, _value (initial)
|
||||||
, _lower (lower)
|
, _lower (lower)
|
||||||
, _upper (upper)
|
, _upper (upper)
|
||||||
|
, _normal (initial)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
/* Controllable API */
|
/* Controllable API */
|
||||||
|
Loading…
Reference in New Issue
Block a user