summaryrefslogtreecommitdiff
path: root/uisimulator/x11/uibasic.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/x11/uibasic.c')
-rw-r--r--uisimulator/x11/uibasic.c5
1 files changed, 2 insertions, 3 deletions
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)
227 227
228 init_window(); 228 init_window();
229 229
230 Logf("Rockbox will kill ya!"); 230 screen_redraw();
231 231
232 app_main(); 232 app_main();
233} 233}
@@ -236,8 +236,6 @@ void screen_redraw()
236{ 236{
237 int y, x; 237 int y, x;
238 238
239 lcd_update();
240
241 /* draw a border around the "Recorder" screen */ 239 /* draw a border around the "Recorder" screen */
242 240
243#define X1 0 241#define X1 0
@@ -250,4 +248,5 @@ void screen_redraw()
250 drawline(1, X1, Y2, X2, Y2); 248 drawline(1, X1, Y2, X2, Y2);
251 drawline(1, X1, Y1, X1, Y2); 249 drawline(1, X1, Y1, X1, Y2);
252 250
251 lcd_update();
253} 252}