diff options
author | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-06-25 22:27:09 +0000 |
---|---|---|
committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-06-25 22:27:09 +0000 |
commit | 13de6583acdcbf14a31c64577a24a58f07acab6c (patch) | |
tree | 4834d47a59f4578de3d3ad754d5eb25747c02dec /apps/plugins | |
parent | e50cba942f50d5f9fd68ac216760a014bc9ecbed (diff) |
If setting a bool, tell the settings code it is bool, not int. Fixes FS #7205
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13719 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r-- | apps/plugins/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/clock.c b/apps/plugins/clock.c index 3c70759da6..f2f6c779f2 100644 --- a/apps/plugins/clock.c +++ b/apps/plugins/clock.c @@ -1474,7 +1474,7 @@ void general_settings(void) case 5: rb->set_option("Idle Poweroff (temporary)", &idle_poweroff, - INT, idle_poweroff_text, 2, NULL); + BOOL, idle_poweroff_text, 2, NULL); break; default: |