diff options
author | Jeffrey Goode <jeffg7@gmail.com> | 2009-11-04 18:14:36 +0000 |
---|---|---|
committer | Jeffrey Goode <jeffg7@gmail.com> | 2009-11-04 18:14:36 +0000 |
commit | 95e2d72759543b739a8faba7545fe6d9752fb4ef (patch) | |
tree | f8afc86797e83fd4556ec17e857d4caa097d3bb9 /apps/menus | |
parent | a06feaa7ecb010e6a6d85f49e6392f06f9f814a2 (diff) |
Compressor: simplify makeup gain setting, expand release range, finally provide documention in the manual!
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23518 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/menus')
-rw-r--r-- | apps/menus/sound_menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/menus/sound_menu.c b/apps/menus/sound_menu.c index 60315804a9..0ce860cb7c 100644 --- a/apps/menus/sound_menu.c +++ b/apps/menus/sound_menu.c @@ -109,16 +109,16 @@ static int timestretch_callback(int action,const struct menu_item_ex *this_item) /* compressor submenu */ MENUITEM_SETTING(compressor_threshold, &global_settings.compressor_threshold, lowlatency_callback); - MENUITEM_SETTING(compressor_ratio, - &global_settings.compressor_ratio, lowlatency_callback); MENUITEM_SETTING(compressor_gain, &global_settings.compressor_makeup_gain, lowlatency_callback); + MENUITEM_SETTING(compressor_ratio, + &global_settings.compressor_ratio, lowlatency_callback); MENUITEM_SETTING(compressor_knee, &global_settings.compressor_knee, lowlatency_callback); MENUITEM_SETTING(compressor_release, &global_settings.compressor_release_time, lowlatency_callback); MAKE_MENU(compressor_menu,ID2P(LANG_COMPRESSOR), NULL, Icon_NOICON, - &compressor_threshold, &compressor_ratio, &compressor_gain, + &compressor_threshold, &compressor_gain, &compressor_ratio, &compressor_knee, &compressor_release); #endif |