diff options
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r-- | alc/alc.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp index 64fddafc..6a599dda 100644 --- a/alc/alc.cpp +++ b/alc/alc.cpp @@ -2202,7 +2202,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const int *attrList) continue; voice->mStep = 0; - voice->mFlags |= VOICE_IS_FADING; + voice->mFlags |= VoiceIsFading; if(voice->mAmbiOrder && device->mAmbiOrder > voice->mAmbiOrder) { @@ -2223,7 +2223,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const int *attrList) std::fill_n(chandata.mWetParams.begin(), num_sends, SendParams{}); } - voice->mFlags |= VOICE_IS_AMBISONIC; + voice->mFlags |= VoiceIsAmbisonic; } else { @@ -2235,7 +2235,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const int *attrList) std::fill_n(chandata.mWetParams.begin(), num_sends, SendParams{}); } - voice->mFlags &= ~VOICE_IS_AMBISONIC; + voice->mFlags &= ~VoiceIsAmbisonic; } if(device->AvgSpeakerDist > 0.0f) |