1
0
Fork 0
forked from len0rd/rockbox

*** empty log message ***

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@402 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Hak 2002-05-03 07:01:40 +00:00
parent 38cb040f07
commit 6675042641
2 changed files with 1 additions and 3 deletions

View file

@ -102,11 +102,9 @@ void app_main(void)
case BUTTON_DOWN:
if(cursor == menu_bottom ){
/* wrap around to menu top */
printf("from (%d) to (%d)\n", cursor, menu_top);
cursor = put_cursor(cursor, menu_top);
} else {
/* move down */
printf("from (%d) to (%d)\n", cursor, cursor+1);
cursor = put_cursor(cursor, cursor+1);
}
break;