diff options
author | Antoine Cellerier <dionoea@videolan.org> | 2007-06-04 07:30:19 +0000 |
---|---|---|
committer | Antoine Cellerier <dionoea@videolan.org> | 2007-06-04 07:30:19 +0000 |
commit | 3611b4c8d8498c808bb0c6c26975e166e637a0aa (patch) | |
tree | ee6d3e86427f3a864e6da70dfd1a171142f3ec52 /apps/plugins/xobox.c | |
parent | 3240c016114578f3c2eb628b0c0a5c6f36447b4d (diff) |
* xobox.c: Fix speed range.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13549 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/xobox.c')
-rw-r--r-- | apps/plugins/xobox.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/xobox.c b/apps/plugins/xobox.c index 29835a26eb..a13844570b 100644 --- a/apps/plugins/xobox.c +++ b/apps/plugins/xobox.c @@ -770,7 +770,7 @@ static int game_menu (void) for (;;) { rb->do_menu(&menu,&selection); if (selection==1) - rb->set_int ("Speed", "", UNIT_INT, &speed, NULL, 1, 1, 11, NULL); + rb->set_int ("Speed", "", UNIT_INT, &speed, NULL, 1, 1, 10, NULL); else if (selection==2) rb->set_int ("Difficulty", "", UNIT_INT, &difficulty, NULL, 5, 50, 95, NULL); |