summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2007-06-04 07:30:19 +0000
committerAntoine Cellerier <dionoea@videolan.org>2007-06-04 07:30:19 +0000
commit3611b4c8d8498c808bb0c6c26975e166e637a0aa (patch)
treeee6d3e86427f3a864e6da70dfd1a171142f3ec52
parent3240c016114578f3c2eb628b0c0a5c6f36447b4d (diff)
downloadrockbox-3611b4c8d8498c808bb0c6c26975e166e637a0aa.tar.gz
rockbox-3611b4c8d8498c808bb0c6c26975e166e637a0aa.zip
* xobox.c: Fix speed range.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13549 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/xobox.c2
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)
770 for (;;) { 770 for (;;) {
771 rb->do_menu(&menu,&selection); 771 rb->do_menu(&menu,&selection);
772 if (selection==1) 772 if (selection==1)
773 rb->set_int ("Speed", "", UNIT_INT, &speed, NULL, 1, 1, 11, NULL); 773 rb->set_int ("Speed", "", UNIT_INT, &speed, NULL, 1, 1, 10, NULL);
774 else if (selection==2) 774 else if (selection==2)
775 rb->set_int ("Difficulty", "", UNIT_INT, &difficulty, NULL, 775 rb->set_int ("Difficulty", "", UNIT_INT, &difficulty, NULL,
776 5, 50, 95, NULL); 776 5, 50, 95, NULL);