Skip to content

Commit

Permalink
Quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
regulus79 committed Dec 16, 2024
1 parent 7590bc0 commit 8513647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Song.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ void Song::processAutomations(const TrackList &tracklist, TimePos timeStart, fpp
if (p->isRecording() && relTime >= 0 && relTime < p->length())
{
const AutomatableModel* recordedModel = p->firstObject();
p->recordValue(relTime, recordedModel->value<float>());
p->recordValue(relTime, recordedModel->inverseScaledValue(recordedModel->value<float>()));

recordedModels << recordedModel;
}
Expand Down

0 comments on commit 8513647

Please sign in to comment.