diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-12 14:22:35 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-12 14:22:35 +0000 |
commit | fb62831faa2612da0372eb3dcfb0c19901e321ad (patch) | |
tree | 9fdb6817672b8a9757699c27aad2d362f39f51d9 /apps/settings_list.h | |
parent | b0810520be34bbcedeadab92e4bf63d04af03720 (diff) | |
download | rockbox-fb62831faa2612da0372eb3dcfb0c19901e321ad.tar.gz rockbox-fb62831faa2612da0372eb3dcfb0c19901e321ad.tar.bz2 rockbox-fb62831faa2612da0372eb3dcfb0c19901e321ad.zip |
* Move playback menu to the new sysetm
(http://forums.rockbox.org/index.php?topic=8703.0 if I broke any of
those settings accidently).
* Add set_int_ex() which is the same as set_int() but adds a param which
is a callback that returns the voice ID to talk for the selected value
* Change the "pause on headphone unplug" to use meaningful strings in
the config instead of numbers, this setting will be reset.
* saves ~500bytes on the rec build :D
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12285 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings_list.h')
-rw-r--r-- | apps/settings_list.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings_list.h b/apps/settings_list.h index 7a5a445469..cbbd23a4b5 100644 --- a/apps/settings_list.h +++ b/apps/settings_list.h @@ -70,6 +70,7 @@ struct int_setting { int max; int step; void (*formatter)(char*, int, int, const char*); + long (*get_talk_id)(int); }; #define F_INT_SETTING 0x80 |