1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-18 11:00:14 +00:00

Disable MIDI support

This will be added back soon with with functionality to be able to
optionally enable it.
This commit is contained in:
Matthew Kilgore 2022-08-27 13:13:56 -04:00 committed by Matt Kilgore
parent 2603f84896
commit c989be69f6

View file

@ -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};
//-----------------------------------------------------------------------------------------------------