winmm_midi.c: Ditto for MEVT_F_SHORT

similar to MEVT_F_LONG, this too is full DWORD, though its value remains 0
This commit is contained in:
negativeExponent 2024-07-17 18:23:48 -07:00 committed by LibretroAdmin
parent d896d9379d
commit bd69602686

View File

@ -321,7 +321,7 @@ static bool winmm_midi_write_short_event(winmm_midi_buffer_t *buf,
buf->data[i++] = delta_time;
buf->data[i++] = 0;
buf->data[i] = MEVT_F_SHORT << 24;
buf->data[i] = MEVT_F_SHORT;
if (data_size == 0)
buf->data[i] |= MEVT_NOP;
else