summaryrefslogtreecommitdiff
path: root/uisimulator/app.c
diff options
context:
space:
mode:
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;