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:
Hardeep Sidhu 2002-08-25 05:14:54 +00:00
parent c674415a16
commit 36c11657bf

View file

@ -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;
}