summaryrefslogtreecommitdiff
path: root/uisimulator/app.c
diff options
context:
space:
mode:
authorRobert Hak <adiamas@rockbox.org>2002-05-03 07:01:40 +0000
committerRobert Hak <adiamas@rockbox.org>2002-05-03 07:01:40 +0000
commit6675042641775fb400911ea6114719edac844ef6 (patch)
treec9ad79436ad20b536240142437e20eddf51d451c /uisimulator/app.c
parent38cb040f077300bfec90fcb02dcdbf5ffaa69e4c (diff)
downloadrockbox-6675042641775fb400911ea6114719edac844ef6.tar.gz
rockbox-6675042641775fb400911ea6114719edac844ef6.zip
*** empty log message ***
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@402 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/app.c')
-rw-r--r--uisimulator/app.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/uisimulator/app.c b/uisimulator/app.c
index 44f396eae2..0e5fe7eec8 100644
--- a/uisimulator/app.c
+++ b/uisimulator/app.c
@@ -102,11 +102,9 @@ void app_main(void)
102 case BUTTON_DOWN: 102 case BUTTON_DOWN:
103 if(cursor == menu_bottom ){ 103 if(cursor == menu_bottom ){
104 /* wrap around to menu top */ 104 /* wrap around to menu top */
105 printf("from (%d) to (%d)\n", cursor, menu_top);
106 cursor = put_cursor(cursor, menu_top); 105 cursor = put_cursor(cursor, menu_top);
107 } else { 106 } else {
108 /* move down */ 107 /* move down */
109 printf("from (%d) to (%d)\n", cursor, cursor+1);
110 cursor = put_cursor(cursor, cursor+1); 108 cursor = put_cursor(cursor, cursor+1);
111 } 109 }
112 break; 110 break;