mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
Attempt to fix a blank banks list of ADLMIDI
That happen because of silly dependency on soundfonts list which is totally unneeded to ADLMIDI as it uses embedded banks or external banks in a different format. https://forum.zdoom.org/viewtopic.php?f=104&t=59997&p=1047184
This commit is contained in:
parent
b952653303
commit
74c5bab075
1 changed files with 3 additions and 3 deletions
|
@ -1428,10 +1428,10 @@ static void InitMusicMenus()
|
|||
DMenuDescriptor **menu = MenuDescriptors.CheckKey("ADLBankMenu");
|
||||
|
||||
if (menu != nullptr)
|
||||
{
|
||||
if (soundfonts.Size() > 0)
|
||||
{
|
||||
int adl_banks_count = adl_getBanksCount();
|
||||
if (adl_banks_count > 0)
|
||||
{
|
||||
const char *const *adl_bank_names = adl_getBankNames();
|
||||
for (int i=0; i < adl_banks_count; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue