Sequencer: correct speed assignment

The argument was shadowing the class member.

Ref !121016
This commit is contained in:
Campbell Barton
2024-04-25 12:02:11 +10:00
parent c555fc8cf3
commit 9558aafafb

View File

@@ -599,7 +599,7 @@ class RetimingRange {
: start(start_frame), end(end_frame), speed(speed), type(type)
{
if (type == TRANSITION) {
speed = 1.0f;
this->speed = 1.0f;
claculate_speed_table_from_seq(seq);
}
}