From 55410cf40713bf63647a7618b4f543bd3d38468a Mon Sep 17 00:00:00 2001 From: twinaphex Date: Wed, 3 Feb 2021 10:04:42 +0100 Subject: [PATCH] Use C-style comments --- midi/drivers/winmm_midi.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/midi/drivers/winmm_midi.c b/midi/drivers/winmm_midi.c index f7d3d76475..b7ae7f256e 100644 --- a/midi/drivers/winmm_midi.c +++ b/midi/drivers/winmm_midi.c @@ -17,9 +17,9 @@ #include #include -#include "../../verbosity.h" #include +#include "../../verbosity.h" #include "../midi_driver.h" #define WINMM_MIDI_BUF_CNT 3 @@ -605,8 +605,8 @@ static bool winmm_midi_flush(void *p) #ifdef DEBUG RARCH_ERR("[MIDI]: midiStreamOut failed with error %d.\n", mmr); #endif - // Core sent MIDI message not understood by the MIDI driver - // Make this buffer available to be used again + /* Core sent MIDI message not understood by the MIDI driver + * Make this buffer available to be used again */ buf->header.dwFlags |= MHDR_DONE; buf->header.dwFlags &= ~MHDR_INQUEUE; return false;