aboutsummaryrefslogtreecommitdiffstats
path: root/Alc
diff options
context:
space:
mode:
Diffstat (limited to 'Alc')
-rw-r--r--Alc/ALc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 0c47818e..c2c3cebd 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -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);
}