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; diff --git a/uisimulator/screensaver.c b/uisimulator/screensaver.c index b5e90d7cc0..ab7faf8d90 100644 --- a/uisimulator/screensaver.c +++ b/uisimulator/screensaver.c @@ -79,7 +79,7 @@ void ss_loop(void) return; lcd_clear_display(); - drawrect(x-offset, y-offset, x2+offset, y2+offset); + lcd_drawrect(x-offset, y-offset, x2+offset, y2+offset); lcd_update(); i+=factor;