- applied Chris's latest OpenAL patch.

SVN r2781 (openal)
This commit is contained in:
Christoph Oelckers 2010-09-15 13:45:08 +00:00
commit d64fcbd01e
6 changed files with 165 additions and 178 deletions

View file

@ -58,6 +58,8 @@ static FOptionMenuDescriptor DefaultOptionMenuSettings; // contains common setti
FOptionMenuSettings OptionSettings;
FOptionMap OptionValues;
void I_BuildALDeviceList(FOptionValues *opt);
static void DeinitMenus()
{
{
@ -1204,6 +1206,11 @@ void M_CreateMenus()
{
I_BuildMIDIMenuList(*opt);
}
opt = OptionValues.CheckKey(NAME_Aldevices);
if (opt != NULL)
{
I_BuildALDeviceList(*opt);
}
}
//=============================================================================