From c989be69f626319311cdfe12d0689a45577faa5b Mon Sep 17 00:00:00 2001 From: Matthew Kilgore Date: Sat, 27 Aug 2022 13:13:56 -0400 Subject: [PATCH] Disable MIDI support This will be added back soon with with functionality to be able to optionally enable it. --- internal/c/parts/audio/miniaudio_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/c/parts/audio/miniaudio_impl.cpp b/internal/c/parts/audio/miniaudio_impl.cpp index ba97781b9..3643e4ce4 100644 --- a/internal/c/parts/audio/miniaudio_impl.cpp +++ b/internal/c/parts/audio/miniaudio_impl.cpp @@ -32,7 +32,7 @@ // RADv2 format support #include "extras/miniaudio_radv2.h" // MIDI format support -#include "extras/miniaudio_tinysoundfont.h" +// #include "extras/miniaudio_tinysoundfont.h" // MOD, S3M, XM & IT support #include "extras/miniaudio_libxmp-lite.h" //----------------------------------------------------------------------------------------------------- @@ -43,7 +43,7 @@ // Add custom backend (format) vtables here // The order in the array defines the order of priority // The vtables will be passed in to the resource manager config -ma_decoding_backend_vtable *maCustomBackendVTables[] = {&ma_decoding_backend_vtable_radv2, &ma_decoding_backend_vtable_tsf, +ma_decoding_backend_vtable *maCustomBackendVTables[] = {&ma_decoding_backend_vtable_radv2, // &ma_decoding_backend_vtable_tsf, &ma_decoding_backend_vtable_modplay}; //-----------------------------------------------------------------------------------------------------