diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-03-05 09:58:30 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-03-05 09:58:30 +0000 |
| commit | 0e5cec2d187dbded9b3c36dbcfd1469d00fe47af (patch) | |
| tree | ab02e321e04ebfb4fb2e0a5327b5443a10761176 /apps/main.c | |
| parent | 8232e1a7c8d7cfaa16e3c8283fdb6d5a46aaf577 (diff) | |
| download | rockbox-0e5cec2d187dbded9b3c36dbcfd1469d00fe47af.zip rockbox-0e5cec2d187dbded9b3c36dbcfd1469d00fe47af.tar.gz rockbox-0e5cec2d187dbded9b3c36dbcfd1469d00fe47af.tar.bz2 rockbox-0e5cec2d187dbded9b3c36dbcfd1469d00fe47af.tar.xz | |
FS#8457 - convert the list drawing code to use viewports. This does not include any of the customizability which was in the patch, so unless any bugs show up users should not notice any difference.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16527 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/main.c')
| -rw-r--r-- | apps/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c index 3b2d516..bb29eb7 100644 --- a/apps/main.c +++ b/apps/main.c @@ -125,7 +125,13 @@ void app_main(void) static void app_main(void) #endif { + int i; init(); + FOR_NB_SCREENS(i) + { + screens[i].clear_display(); + screens[i].update(); + } tree_gui_init(); root_menu(); } |