Reduced max ffw/rew step size to 255s because we are storing the value in 1 byte
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1971 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
c674415a16
commit
36c11657bf
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ static Menu timedate_set(void)
|
|||
static Menu ff_rewind(void)
|
||||
{
|
||||
set_int("[FF/Rewind Step Size]", "s", &global_settings.ff_rewind,
|
||||
NULL, 1, 1, 999 );
|
||||
NULL, 1, 1, 255 );
|
||||
return MENU_OK;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue