1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-15 15:11:12 +02:00

Fix bug in update of progress in CompareAudioCommand

This commit is contained in:
Paul Licameli
2016-08-20 18:15:20 -04:00
parent 56586770e0
commit 2969336258

View File

@@ -128,7 +128,7 @@ bool CompareAudioCommand::Apply(CommandExecutionContext context)
}
position += block;
Progress((position - mT0) / length);
Progress((position - s0) / length);
}
delete [] buff0;