mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
Completely blind guess to fix compression score
This commit is contained in:
parent
7ceabffc84
commit
98e1c1994b
@ -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 New Issue
Block a user