diff options
| author | Diegoisawesome <diego@domoreaweso.me> | 2018-09-23 23:37:47 -0500 |
|---|---|---|
| committer | Diegoisawesome <diego@domoreaweso.me> | 2018-09-23 23:37:47 -0500 |
| commit | ef95a132885280dc15848ef6bc6081e0cce35c7e (patch) | |
| tree | 5da9d19d74254600822fc473e96349869886d1a8 /tools | |
| parent | 25033ef311d116a8205844bb6bd1a4fda8c9f967 (diff) | |
Fix compression score lower limit
Diffstat (limited to 'tools')
| -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); } |
