Rename GetReverbEffect to LoadReverbPreset
This commit is contained in:
parent
07e34cc3cf
commit
e356527a88
@ -724,10 +724,8 @@ static void alc_initconfig(void)
|
||||
|
||||
InitEffect(&DefaultEffect);
|
||||
str = getenv("ALSOFT_DEFAULT_REVERB");
|
||||
if(str && str[0])
|
||||
GetReverbEffect(str, &DefaultEffect);
|
||||
else if(ConfigValueStr(NULL, "default-reverb", &str))
|
||||
GetReverbEffect(str, &DefaultEffect);
|
||||
if((str && str[0]) || ConfigValueStr(NULL, "default-reverb", &str))
|
||||
LoadReverbPreset(str, &DefaultEffect);
|
||||
}
|
||||
|
||||
|
||||
|
@ -105,7 +105,7 @@ static __inline ALboolean IsReverbEffect(ALenum type)
|
||||
ALenum InitEffect(ALeffect *effect);
|
||||
ALvoid ReleaseALEffects(ALCdevice *device);
|
||||
|
||||
ALvoid GetReverbEffect(const char *name, ALeffect *effect);
|
||||
ALvoid LoadReverbPreset(const char *name, ALeffect *effect);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
@ -1451,7 +1451,7 @@ static const struct {
|
||||
#undef DECL
|
||||
static const ALsizei reverblistsize = COUNTOF(reverblist);
|
||||
|
||||
ALvoid GetReverbEffect(const char *name, ALeffect *effect)
|
||||
ALvoid LoadReverbPreset(const char *name, ALeffect *effect)
|
||||
{
|
||||
int i;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user