diff options
author | Peter D'Hoye <peter.dhoye@gmail.com> | 2010-03-04 21:16:15 +0000 |
---|---|---|
committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2010-03-04 21:16:15 +0000 |
commit | 5e0b407edff3ba11b54f1f495eed11199361cf38 (patch) | |
tree | ed5ebf439e8d1ac0ce488ae7608179ad186d2a72 | |
parent | 8045e1b4592aa2a067c77ec2cf46cd93d7320e55 (diff) |
fix typo in talk value of histogram setting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25028 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/menus/recording_menu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/menus/recording_menu.c b/apps/menus/recording_menu.c index b5bbecb9aa..800918b755 100644 --- a/apps/menus/recording_menu.c +++ b/apps/menus/recording_menu.c @@ -400,7 +400,7 @@ static bool history_interval(void) { "0s", TALK_ID(0, UNIT_SEC) }, { "1s", TALK_ID(1, UNIT_SEC) }, { "2s", TALK_ID(2, UNIT_SEC) }, - { "4s", TALK_ID(5, UNIT_SEC) } + { "4s", TALK_ID(4, UNIT_SEC) } }; return set_option(str(LANG_RECORDING_HISTOGRAM_INTERVAL), &global_settings.rec_histogram_interval, |