diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2007-06-11 08:34:42 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2007-06-11 08:34:42 +0000 |
| commit | 541f4033428a4cff8311e2081b1d6d2479180bdc (patch) | |
| tree | c6cec9adf5e3dd365a521dd0162f0e3f762142f9 | |
| parent | 53b1aaf7b07a3c97d1e6ae8df27e117d2736993d (diff) | |
| download | rockbox-541f4033428a4cff8311e2081b1d6d2479180bdc.zip rockbox-541f4033428a4cff8311e2081b1d6d2479180bdc.tar.gz rockbox-541f4033428a4cff8311e2081b1d6d2479180bdc.tar.bz2 rockbox-541f4033428a4cff8311e2081b1d6d2479180bdc.tar.xz | |
..and add a couple of comments.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13617 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/talk.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/talk.h b/apps/talk.h index 6c9bc08..d5a6bc7 100644 --- a/apps/talk.h +++ b/apps/talk.h @@ -72,6 +72,6 @@ int talk_number(long n, bool enqueue); /* say a number */ int talk_value(long n, int unit, bool enqueue); /* say a numeric value */ int talk_spell(const char* spell, bool enqueue); /* spell a string */ bool talk_menus_enabled(void); /* returns true if menus should be voiced */ -void talk_disable_menus(void); -void talk_enable_menus(void); +void talk_disable_menus(void); /* disable voice menus (temporarily, not persisted) */ +void talk_enable_menus(void); /* re-enable voice menus */ #endif /* __TALK_H__ */ |