diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2002-04-30 06:55:45 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2002-04-30 06:55:45 +0000 |
| commit | 9b68ef8ddcc5c84fcbc78c3c13d8dc183b49f084 (patch) | |
| tree | 91967baa6efca8b0fe484eeb2ad5594bb50062c0 | |
| parent | 22740a0999d0b003ad6f827f2d36f6fb84b3527d (diff) | |
| download | rockbox-9b68ef8ddcc5c84fcbc78c3c13d8dc183b49f084.zip rockbox-9b68ef8ddcc5c84fcbc78c3c13d8dc183b49f084.tar.gz rockbox-9b68ef8ddcc5c84fcbc78c3c13d8dc183b49f084.tar.bz2 rockbox-9b68ef8ddcc5c84fcbc78c3c13d8dc183b49f084.tar.xz | |
draw the "box" before calling the app
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@319 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | uisimulator/x11/uibasic.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/uisimulator/x11/uibasic.c b/uisimulator/x11/uibasic.c index f3b3543..4af667a 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(); } |