AUDIO: Fixed compiler warning, this is always true

This commit is contained in:
Paweł Kołodziejski 2021-12-05 16:17:20 +01:00
parent f3eba5e945
commit 2bc3d7f4ed
No known key found for this signature in database
GPG Key ID: 0BDADC9E74440FF7

View File

@ -137,10 +137,8 @@ MidiDriver_MT32GM::~MidiDriver_MT32GM() {
}
_driver = nullptr;
if (_controlData) {
for (int i = 0; i < MIDI_CHANNEL_COUNT; ++i) {
delete _controlData[i];
}
for (int i = 0; i < MIDI_CHANNEL_COUNT; ++i) {
delete _controlData[i];
}
if (_activeNotes)
delete[] _activeNotes;