diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-07-17 14:54:22 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-07-17 14:54:22 +0000 |
commit | efda73c74dd379b30bf56fcff89eee9338acc02f (patch) | |
tree | ab99529448243510a8b18013f715ba8e382d72e1 /src/conf.c | |
parent | 3edf33154308eafe212a0d536612b030e95ffc70 (diff) | |
download | mpd-efda73c74dd379b30bf56fcff89eee9338acc02f.tar.gz mpd-efda73c74dd379b30bf56fcff89eee9338acc02f.tar.xz mpd-efda73c74dd379b30bf56fcff89eee9338acc02f.zip |
add replaygain preamp
git-svn-id: https://svn.musicpd.org/mpd/trunk@1873 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/conf.c')
-rw-r--r-- | src/conf.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/conf.c b/src/conf.c index c92546023..1eadc36fe 100644 --- a/src/conf.c +++ b/src/conf.c @@ -37,7 +37,7 @@ #define CONF_COMMENT '#' -#define CONF_NUMBER_OF_PARAMS 33 +#define CONF_NUMBER_OF_PARAMS 34 #define CONF_NUMBER_OF_PATHS 6 #define CONF_NUMBER_OF_REQUIRED 5 #define CONF_NUMBER_OF_ALLOW_CATS 1 @@ -129,7 +129,8 @@ char ** readConf(char * file) { "http_proxy_host", "http_proxy_port", "http_proxy_user", - "http_proxy_password" + "http_proxy_password", + "replaygain_preamp" }; int conf_absolutePaths[CONF_NUMBER_OF_PATHS] = { |