| 1670 | void I_BuildMIDIMenuList(FOptionValues*); |
| 1671 | |
| 1672 | void 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 |
no test coverage detected