From 485ff795843597483264b1c9ce1a29a154aa6679 Mon Sep 17 00:00:00 2001 From: Jonathan Gordon Date: Tue, 1 Mar 2011 12:31:03 +0000 Subject: Add an ability to set a setting to a specific value with a touchscreen action. example: %T(0,0,20,12, setting_set, repeat, off) That will set the repeat mode to "off" when it is pressed. "setting_set" is the action name "repeat" is the name of the setting in the config files "off" is the value to set it to (same values as the legal values in the config files) Not all settings are supported, outright unsupported settings will fail to parse. Some settings might not work too well if they don't apply instantly (Any that work well int he quickscreen should work well here) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29483 a1c6a512-1295-4272-9138-f99709370657 --- apps/settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/settings.c') diff --git a/apps/settings.c b/apps/settings.c index e491c5b6f2..e9458dc601 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -231,7 +231,7 @@ void settings_load(int which) } } -static bool cfg_string_to_int(int setting_id, int* out, const char* str) +bool cfg_string_to_int(int setting_id, int* out, const char* str) { const char* start = settings[setting_id].cfg_vals; char* end = NULL; -- cgit v1.2.3