diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-27 00:11:01 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-27 00:11:01 +0000 |
commit | 3aa99e14cdc493a090d810dde163ea76b83d18f2 (patch) | |
tree | d7cbbab1c8ba039908f11138b34a31c6e75e0b15 /apps/sound_menu.c | |
parent | a9c645f887947c924226f9570b61572c2d355b55 (diff) |
Step 4 of voice UI:
- "talkbox" functionality added, but yet without thumbnail recording
- menu under "general settings" to configure voice
- directories and folders can be voiced as a numbers
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4440 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/sound_menu.c')
-rw-r--r-- | apps/sound_menu.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/sound_menu.c b/apps/sound_menu.c index 67e6999e8d..23d4c811a5 100644 --- a/apps/sound_menu.c +++ b/apps/sound_menu.c @@ -87,7 +87,8 @@ bool set_sound(char* string, { snprintf(str,sizeof str,"%d %s ", val, unit); } - talk_value(val, talkunit, false); /* speak it */ + if (global_settings.talk_menu) + talk_value(val, talkunit, false); /* speak it */ } lcd_puts(0,1,str); status_draw(true); |