Remove a redundant and pointless #ifdef in midi_fluidsynth.c

This commit is contained in:
Alexander Babikov
2023-11-18 02:16:43 +05:00
parent f83a63daf2
commit ad51c62451

View File

@@ -1,5 +1,4 @@
/* some code borrowed from scummvm */ /* some code borrowed from scummvm */
#ifdef USE_FLUIDSYNTH
#include <stdint.h> #include <stdint.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
@@ -499,4 +498,3 @@ const device_t fluidsynth_device = {
.config = fluidsynth_config .config = fluidsynth_config
}; };
#endif /*USE_FLUIDSYNTH*/