aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/ALc.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2011-03-12 20:37:22 -0800
committerChris Robinson <[email protected]>2011-03-12 20:37:22 -0800
commit8249dc8559aae9762fd3047120abeef0ae0303b6 (patch)
tree21f46ccc4b7ac85db6bb09203a7722f58954d99b /Alc/ALc.c
parent59fe4f8a367f9cc916201fbff48c4987e77436f0 (diff)
Combine multiple lists into one
Diffstat (limited to 'Alc/ALc.c')
-rw-r--r--Alc/ALc.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/Alc/ALc.c b/Alc/ALc.c
index 390856a7..95783e52 100644
--- a/Alc/ALc.c
+++ b/Alc/ALc.c
@@ -507,17 +507,6 @@ static void alc_init(void)
str = GetConfigValue(NULL, "excludefx", "");
if(str[0])
{
- const struct {
- const char *name;
- int type;
- } EffectList[] = {
- { "eaxreverb", EAXREVERB },
- { "reverb", REVERB },
- { "echo", ECHO },
- { "modulator", MODULATOR },
- { "dedicated", DEDICATED },
- { NULL, 0 }
- };
int n;
size_t len;
const char *next = str;