summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-02-26 10:31:05 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-02-26 10:31:05 +0000
commitb6b688cbc4ff96b2385fcdfb3c4933d2aac8e050 (patch)
treeb9767511cf5bfefe6eebbbe7a2da3dbb076ee776 /apps
parent58011f950407f0c79525a2f4b6380809bd22ee2b (diff)
fix the enable replaygain setting text
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12495 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/settings_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c
index b56e34d7e0..7f131e8813 100644
--- a/apps/settings_list.c
+++ b/apps/settings_list.c
@@ -801,7 +801,7 @@ const struct settings_list settings[] = {
#if CONFIG_CODEC == SWCODEC
/* replay gain */
- OFFON_SETTING(0, replaygain, LANG_REPLAYGAIN, false, "replaygain", NULL),
+ OFFON_SETTING(0, replaygain, LANG_REPLAYGAIN_ENABLE, false, "replaygain", NULL),
CHOICE_SETTING(0, replaygain_type, LANG_REPLAYGAIN_MODE, REPLAYGAIN_ALBUM,
"replaygain type", "track,album,track shuffle", NULL, 3,
ID2P(LANG_TRACK_GAIN), ID2P(LANG_ALBUM_GAIN), ID2P(LANG_SHUFFLE_GAIN)),