1
0
Fork 0
forked from len0rd/rockbox

draw the "box" before calling the app

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@319 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2002-04-30 06:55:45 +00:00
parent 22740a0999
commit 9b68ef8ddc

View file

@ -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();
}