diff options
author | Kermalis <29823718+Kermalis@users.noreply.github.com> | 2018-09-24 00:40:40 -0400 |
---|---|---|
committer | Kermalis <29823718+Kermalis@users.noreply.github.com> | 2018-09-24 00:40:40 -0400 |
commit | 9e7db1bc1985824f464155e39ca22883d2279f01 (patch) | |
tree | a3f398d9f89767500172f5b18a7b7dc37d945191 | |
parent | dbfc4b00e1a780b5b1c64933f0b1f01494bda0f1 (diff) | |
parent | ef95a132885280dc15848ef6bc6081e0cce35c7e (diff) |
Merge branch 'master' of https://github.com/pret/pokeemerald
-rw-r--r-- | tools/mid2agb/midi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/mid2agb/midi.cpp b/tools/mid2agb/midi.cpp index 09480e139..c7a4389b9 100644 --- a/tools/mid2agb/midi.cpp +++ b/tools/mid2agb/midi.cpp @@ -900,7 +900,7 @@ void Compress(std::vector<Event>& events) return; } - if (CalculateCompressionScore(events, i) >= 6) + if (CalculateCompressionScore(events, i) > 6) { CompressWholeNote(events, i); } |