summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/sound_menu.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/sound_menu.c b/apps/sound_menu.c
index fe01cd9560..6265114406 100644
--- a/apps/sound_menu.c
+++ b/apps/sound_menu.c
@@ -66,6 +66,8 @@ bool set_sound(char* string,
66 talkunit = UNIT_DB; 66 talkunit = UNIT_DB;
67 else if (*unit == '%') 67 else if (*unit == '%')
68 talkunit = UNIT_PERCENT; 68 talkunit = UNIT_PERCENT;
69 else if (*unit == 'H')
70 talkunit = UNIT_HERTZ;
69 71
70#ifdef HAVE_LCD_BITMAP 72#ifdef HAVE_LCD_BITMAP
71 if(global_settings.statusbar) 73 if(global_settings.statusbar)
@@ -198,7 +200,7 @@ static bool mdb_center(void)
198 200
199static bool mdb_shape(void) 201static bool mdb_shape(void)
200{ 202{
201 return set_sound(str(LANG_MDB_SHAPE), &global_settings.mdb_shape, 203 return set_sound(str(LANG_MDB_SHAPE), &global_settings.mdb_shape,
202 SOUND_MDB_SHAPE); 204 SOUND_MDB_SHAPE);
203} 205}
204 206