aboutsummaryrefslogtreecommitdiffstats
path: root/alc/alc.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2020-03-28 15:37:34 -0700
committerChris Robinson <[email protected]>2020-03-28 18:15:05 -0700
commitf1f9a1417206e6097005c6088b65d56cb4e15429 (patch)
tree5ca1ad3fc79bfb1789ff0d0d9a28a2cebca845ef /alc/alc.cpp
parent504745abec35c4718833cd7c7ed8db3b242e0aa2 (diff)
Avoid AL[C]boolean for internal use
Diffstat (limited to 'alc/alc.cpp')
-rw-r--r--alc/alc.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/alc/alc.cpp b/alc/alc.cpp
index d1964bd4..fc4af2b0 100644
--- a/alc/alc.cpp
+++ b/alc/alc.cpp
@@ -1201,7 +1201,7 @@ void alc_initconfig(void)
{
if(len == strlen(effectitem.name) &&
strncmp(effectitem.name, str, len) == 0)
- DisabledEffects[effectitem.type] = AL_TRUE;
+ DisabledEffects[effectitem.type] = true;
}
} while(next++);
}
@@ -1749,7 +1749,6 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
ALCuint new_sends{device->NumAuxSends};
DevFmtChannels oldChans;
DevFmtType oldType;
- ALboolean update_failed;
ALCsizei hrtf_id{-1};
ALCuint oldFreq;
@@ -2210,19 +2209,19 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
/* Need to delay returning failure until replacement Send arrays have been
* allocated with the appropriate size.
*/
- update_failed = AL_FALSE;
+ bool update_failed{false};
FPUCtl mixer_mode{};
for(ALCcontext *context : *device->mContexts.load())
{
if(context->mDefaultSlot)
{
- ALeffectslot *slot = context->mDefaultSlot.get();
+ ALeffectslot *slot{context->mDefaultSlot.get()};
aluInitEffectPanning(slot, device);
EffectState *state{slot->Effect.State};
state->mOutTarget = device->Dry.Buffer;
- if(state->deviceUpdate(device) == AL_FALSE)
- update_failed = AL_TRUE;
+ if(!state->deviceUpdate(device))
+ update_failed = true;
else
UpdateEffectSlotProps(slot, context);
}
@@ -2246,7 +2245,7 @@ static ALCenum UpdateDeviceParams(ALCdevice *device, const ALCint *attrList)
EffectState *state{slot->Effect.State};
state->mOutTarget = device->Dry.Buffer;
if(state->deviceUpdate(device) == AL_FALSE)
- update_failed = AL_TRUE;
+ update_failed = true;
else
UpdateEffectSlotProps(slot, context);
}