From 5fde376f627237112ea348998b67d343a4e2a222 Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 25 Mar 2023 22:16:55 +0100 Subject: [PATCH] MaxVoiceBankID = 16383 With LSB and MSB, up to 16383 banks can be selected using MIDI https://github.com/probonopd/MiniDexed/issues/455#issuecomment-1483908431 --- src/sysexfileloader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sysexfileloader.h b/src/sysexfileloader.h index d8d8714..5954bfe 100644 --- a/src/sysexfileloader.h +++ b/src/sysexfileloader.h @@ -29,7 +29,7 @@ class CSysExFileLoader // Loader for DX7 .syx files { public: - static const unsigned MaxVoiceBankID = 127; // TODO? 16383 + static const unsigned MaxVoiceBankID = 16383; static const unsigned VoicesPerBank = 32; static const size_t SizePackedVoice = 128; static const size_t SizeSingleVoice = 156;