Fix another warn in midi_opl4.c

This commit is contained in:
Jasmine Iwanek
2025-07-28 02:38:13 -04:00
parent a96146742e
commit df613c43ce

View File

@@ -436,7 +436,7 @@ note_on(uint8_t note, uint8_t velocity, MIDI_CHANNEL_DATA *midi_channel, opl4_mi
const YRW801_REGION_DATA_PTR *region_ptr = &snd_yrw801_regions[0];
const YRW801_WAVE_DATA *wave_data[2];
VOICE_DATA *voice[2];
uint16_t i = 0;
int i = 0;
uint8_t voices = 0;
while (opl4_midi->gen_in_progress) { }