diff options
author | Chris Robinson <[email protected]> | 2010-04-25 08:40:37 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2010-04-25 08:40:37 -0700 |
commit | a0ee2ccce7730bfc4fe1f36107558339e606ade0 (patch) | |
tree | 925b883d0d88ce6c12f856dcd66622e10557fdf3 | |
parent | 110be7f500f08e4d926af80bbae8586ebafef983 (diff) |
Add a couple missing values to the *GetEnumValue tables
-rw-r--r-- | Alc/ALc.c | 1 | ||||
-rw-r--r-- | OpenAL32/alExtension.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -148,6 +148,7 @@ static const ALCenums enumeration[] = { { "ALC_CAPTURE_DEVICE_SPECIFIER", ALC_CAPTURE_DEVICE_SPECIFIER }, { "ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER", ALC_CAPTURE_DEFAULT_DEVICE_SPECIFIER}, { "ALC_CAPTURE_SAMPLES", ALC_CAPTURE_SAMPLES }, + { "ALC_CONNECTED", ALC_CONNECTED }, // EFX Properties { "ALC_EFX_MAJOR_VERSION", ALC_EFX_MAJOR_VERSION }, diff --git a/OpenAL32/alExtension.c b/OpenAL32/alExtension.c index f779c6a7..5f2f1c53 100644 --- a/OpenAL32/alExtension.c +++ b/OpenAL32/alExtension.c @@ -303,6 +303,7 @@ static const ALenums enumeration[] = { { "AL_DOPPLER_VELOCITY", AL_DOPPLER_VELOCITY }, { "AL_DISTANCE_MODEL", AL_DISTANCE_MODEL }, { "AL_SPEED_OF_SOUND", AL_SPEED_OF_SOUND }, + { "AL_SOURCE_DISTANCE_MODEL", AL_SOURCE_DISTANCE_MODEL }, // Distance Models { "AL_INVERSE_DISTANCE", AL_INVERSE_DISTANCE }, |