mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (CalculateCompressionScore(events, i) >= 6)
|
if (CalculateCompressionScore(events, i) > 6)
|
||||||
{
|
{
|
||||||
CompressWholeNote(events, i);
|
CompressWholeNote(events, i);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user