mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-26 03:34:15 +01:00
mid2agb fix: compare whole note details before compression
This commit is contained in:
parent
250a451377
commit
c13d2b567c
@ -852,6 +852,12 @@ int CalculateCompressionScore(std::vector<Event>& events, int index)
|
|||||||
|
|
||||||
bool IsCompressionMatch(std::vector<Event>& events, int index1, int index2)
|
bool IsCompressionMatch(std::vector<Event>& events, int index1, int index2)
|
||||||
{
|
{
|
||||||
|
if (events[index1].type != events[index2].type ||
|
||||||
|
events[index1].note != events[index2].note ||
|
||||||
|
events[index1].param1 != events[index2].param1 ||
|
||||||
|
events[index1].time != events[index2].time)
|
||||||
|
return false;
|
||||||
|
|
||||||
index1++;
|
index1++;
|
||||||
index2++;
|
index2++;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user