diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-01-31 07:12:53 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-01-31 07:12:53 +0000 |
| commit | e79ba15115efe56a72e20cfcdf94af1bf3f8bcb7 (patch) | |
| tree | 5359de910e3515fb177063b0332ff8de4a294a12 | |
| parent | 0d094bd86ddda2a26caebed63acc20abd29e8edb (diff) | |
| download | rockbox-e79ba15115efe56a72e20cfcdf94af1bf3f8bcb7.zip rockbox-e79ba15115efe56a72e20cfcdf94af1bf3f8bcb7.tar.gz rockbox-e79ba15115efe56a72e20cfcdf94af1bf3f8bcb7.tar.bz2 rockbox-e79ba15115efe56a72e20cfcdf94af1bf3f8bcb7.tar.xz | |
fix hardware eq settings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12164 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings_list.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings_list.c b/apps/settings_list.c index 985ea3f..a0651be 100644 --- a/apps/settings_list.c +++ b/apps/settings_list.c @@ -611,7 +611,7 @@ const struct settings_list settings[] = { {F_T_INT,GS(eq_hw_band2_bandwidth),LANG_EQUALIZER_BANDWIDTH,INT(0), "eq hardware band 2 bandwidth","narrow,wide",UNUSED}, {F_T_INT,GS(eq_hw_band2_gain),LANG_EQUALIZER_BAND_GAIN,INT(0), - "eq hardware band 1 gain",NULL,UNUSED}, + "eq hardware band 2 gain",NULL,UNUSED}, {F_T_INT,GS(eq_hw_band3_center),LANG_EQUALIZER_BAND_CENTER,INT(1), "eq hardware band 3 center", @@ -625,7 +625,7 @@ const struct settings_list settings[] = { "eq hardware band 4 cutoff", "5.3kHz,6.9kHz,9kHz,11.7kHz",UNUSED}, {F_T_INT,GS(eq_hw_band4_gain),LANG_EQUALIZER_BAND_GAIN,INT(0), - "eq hardware band 0 gain",NULL,UNUSED}, + "eq hardware band 4 gain",NULL,UNUSED}, #endif OFFON_SETTING(0,hold_lr_for_scroll_in_list,-1,true, |