mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-25 05:21:02 +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,12 +1428,12 @@ 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++)
|
||||
for (int i=0; i < adl_banks_count; i++)
|
||||
{
|
||||
auto it = CreateOptionMenuItemCommand(adl_bank_names[i], FStringf("adl_bank %d", i), true);
|
||||
static_cast<DOptionMenuDescriptor*>(*menu)->mItems.Push(it);
|
||||
|
|
Loading…
Reference in a new issue