Fix compression score lower limit
This commit is contained in:
parent
25033ef311
commit
ef95a13288
1 changed files with 1 additions and 1 deletions
|
@ -900,7 +900,7 @@ void Compress(std::vector<Event>& events)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CalculateCompressionScore(events, i) >= 6)
|
if (CalculateCompressionScore(events, i) > 6)
|
||||||
{
|
{
|
||||||
CompressWholeNote(events, i);
|
CompressWholeNote(events, i);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue