Skip to content

Commit

Permalink
Fix change speed function, it was doing the inverse
Browse files Browse the repository at this point in the history
  • Loading branch information
IntelOrca committed Dec 3, 2023
1 parent 01af51f commit a0dcf90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/emdui/ProjectTreeView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ private void ChangeSpeed()

var builder = AnimationBuilder.FromEddEmr(Edd, Emr);
var animation = builder.Animations[Index];
animation.ChangeSpeed(1 / speed);
animation.ChangeSpeed(speed);

var (newEdd, newEmr) = builder.ToEddEmr();
Edd = newEdd;
Expand Down

0 comments on commit a0dcf90

Please sign in to comment.