forked from len0rd/rockbox
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
This commit is contained in:
parent
e50cba942f
commit
13de6583ac
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue