diff options
author | Robert Hak <adiamas@rockbox.org> | 2002-05-03 07:01:40 +0000 |
---|---|---|
committer | Robert Hak <adiamas@rockbox.org> | 2002-05-03 07:01:40 +0000 |
commit | 6675042641775fb400911ea6114719edac844ef6 (patch) | |
tree | c9ad79436ad20b536240142437e20eddf51d451c /uisimulator/app.c | |
parent | 38cb040f077300bfec90fcb02dcdbf5ffaa69e4c (diff) |
*** 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.c | 2 |
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) 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; |