From af4ff89e550455bbd503a44ac26ba6b1bc2857f7 Mon Sep 17 00:00:00 2001 From: Diegoisawesome Date: Tue, 25 Sep 2018 01:32:13 -0500 Subject: [PATCH] Comment out unused variable so GCC doesn't complain --- tools/mid2agb/midi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mid2agb/midi.cpp b/tools/mid2agb/midi.cpp index 1458a32b32..8a84a0945e 100644 --- a/tools/mid2agb/midi.cpp +++ b/tools/mid2agb/midi.cpp @@ -782,7 +782,7 @@ int CalculateCompressionScore(std::vector& events, int index) EventType lastType = events[index].type; std::int32_t lastDuration = 0x80000000; std::uint8_t lastNote = 0x80u; - std::int32_t lastParam2; + //std::int32_t lastParam2; if (events[index].time > 0) score++; @@ -846,7 +846,7 @@ int CalculateCompressionScore(std::vector& events, int index) // BUG: uses type instead of param1 lastParam1 = (std::uint8_t)events[i].type; // unused - lastParam2 = events[i].param2; + //lastParam2 = events[i].param2; lastType = events[i].type; if (events[i].time)