mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
Comment out unused variable so GCC doesn't complain
This commit is contained in:
parent
48b65eecee
commit
af4ff89e55
@ -782,7 +782,7 @@ int CalculateCompressionScore(std::vector<Event>& 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<Event>& 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)
|
||||
|
Loading…
Reference in New Issue
Block a user