diff --git a/uisimulator/x11/uibasic.c b/uisimulator/x11/uibasic.c index f3b354379a..4af667a20b 100644 --- a/uisimulator/x11/uibasic.c +++ b/uisimulator/x11/uibasic.c @@ -227,7 +227,7 @@ screenhack (Display *the_dpy, Window the_window) init_window(); - Logf("Rockbox will kill ya!"); + screen_redraw(); app_main(); } @@ -236,8 +236,6 @@ void screen_redraw() { int y, x; - lcd_update(); - /* draw a border around the "Recorder" screen */ #define X1 0 @@ -250,4 +248,5 @@ void screen_redraw() drawline(1, X1, Y2, X2, Y2); drawline(1, X1, Y1, X1, Y2); + lcd_update(); }