Completely blind guess to fix compression score
This commit is contained in:
parent
7ceabffc84
commit
98e1c1994b
1 changed files with 2 additions and 2 deletions
|
@ -836,7 +836,7 @@ int CalculateCompressionScore(std::vector<Event>& events, int index)
|
|||
}
|
||||
else
|
||||
{
|
||||
score += 2;
|
||||
score++;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -900,7 +900,7 @@ void Compress(std::vector<Event>& events)
|
|||
return;
|
||||
}
|
||||
|
||||
if (CalculateCompressionScore(events, i) > 6)
|
||||
if (CalculateCompressionScore(events, i) >= 6)
|
||||
{
|
||||
CompressWholeNote(events, i);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue