Remove some unnecessary casts
This commit is contained in:
parent
7f4dcefc80
commit
f26798bd19
@ -2652,11 +2652,11 @@ ALC_API ALCdevice* ALC_APIENTRY alcOpenDevice(const ALCchar *deviceName)
|
|||||||
device->UpdateSize = 1024;
|
device->UpdateSize = 1024;
|
||||||
|
|
||||||
device->MaxNoOfSources = GetConfigValueInt(NULL, "sources", 256);
|
device->MaxNoOfSources = GetConfigValueInt(NULL, "sources", 256);
|
||||||
if((ALint)device->MaxNoOfSources <= 0)
|
if(device->MaxNoOfSources <= 0)
|
||||||
device->MaxNoOfSources = 256;
|
device->MaxNoOfSources = 256;
|
||||||
|
|
||||||
device->AuxiliaryEffectSlotMax = GetConfigValueInt(NULL, "slots", 4);
|
device->AuxiliaryEffectSlotMax = GetConfigValueInt(NULL, "slots", 4);
|
||||||
if((ALint)device->AuxiliaryEffectSlotMax <= 0)
|
if(device->AuxiliaryEffectSlotMax <= 0)
|
||||||
device->AuxiliaryEffectSlotMax = 4;
|
device->AuxiliaryEffectSlotMax = 4;
|
||||||
|
|
||||||
device->NumStereoSources = 1;
|
device->NumStereoSources = 1;
|
||||||
@ -2816,11 +2816,11 @@ ALC_API ALCdevice* ALC_APIENTRY alcLoopbackOpenDeviceSOFT(void)
|
|||||||
device->UpdateSize = 0;
|
device->UpdateSize = 0;
|
||||||
|
|
||||||
device->MaxNoOfSources = GetConfigValueInt(NULL, "sources", 256);
|
device->MaxNoOfSources = GetConfigValueInt(NULL, "sources", 256);
|
||||||
if((ALint)device->MaxNoOfSources <= 0)
|
if(device->MaxNoOfSources <= 0)
|
||||||
device->MaxNoOfSources = 256;
|
device->MaxNoOfSources = 256;
|
||||||
|
|
||||||
device->AuxiliaryEffectSlotMax = GetConfigValueInt(NULL, "slots", 4);
|
device->AuxiliaryEffectSlotMax = GetConfigValueInt(NULL, "slots", 4);
|
||||||
if((ALint)device->AuxiliaryEffectSlotMax <= 0)
|
if(device->AuxiliaryEffectSlotMax <= 0)
|
||||||
device->AuxiliaryEffectSlotMax = 4;
|
device->AuxiliaryEffectSlotMax = 4;
|
||||||
|
|
||||||
device->NumStereoSources = 1;
|
device->NumStereoSources = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user