MCPcopy Create free account
hub / github.com/ZDoom/Raze / M_CreateMenus

Function M_CreateMenus

source/common/menu/menudef.cpp:1672–1690  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1670void I_BuildMIDIMenuList(FOptionValues*);
1671
1672void M_CreateMenus()
1673{
1674 InitMusicMenus();
1675 FOptionValues **opt = OptionValues.CheckKey(NAME_Mididevices);
1676 if (opt != nullptr)
1677 {
1678 I_BuildMIDIMenuList(*opt);
1679 }
1680 opt = OptionValues.CheckKey(NAME_Aldevices);
1681 if (opt != nullptr)
1682 {
1683 I_BuildALDeviceList(*opt);
1684 }
1685 opt = OptionValues.CheckKey(NAME_Alresamplers);
1686 if (opt != nullptr)
1687 {
1688 I_BuildALResamplersList(*opt);
1689 }
1690}
1691
1692

Callers 1

M_InitFunction · 0.85

Calls 5

InitMusicMenusFunction · 0.85
I_BuildMIDIMenuListFunction · 0.85
I_BuildALDeviceListFunction · 0.85
I_BuildALResamplersListFunction · 0.85
CheckKeyMethod · 0.45

Tested by

no test coverage detected