mirror of https://github.com/pret/pokeemerald.git
Fix compression score lower limit
This commit is contained in:
parent
25033ef311
commit
ef95a13288
|
@ -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 New Issue