Allow button repeat events in the Brickmania main menu. Makes it easier to scroll through the options on iPods.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12443 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Zakk Roberts 2007-02-21 22:48:44 +00:00
parent f05b9e3bd5
commit a45e835d75

View file

@ -1028,6 +1028,7 @@ int game_menu(int when)
button = rb->button_get(true);
switch(button) {
case UP:
case UP | BUTTON_REPEAT:
if (cur==0)
cur = MENU_LENGTH-1;
else
@ -1038,6 +1039,7 @@ int game_menu(int when)
break;
case DOWN:
case DOWN | BUTTON_REPEAT:
if (cur==MENU_LENGTH-1)
cur = 0;
else