summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2008-05-18 10:19:21 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2008-05-18 10:19:21 +0000
commit476d28963df4093b70d50bf58d57183436359dcc (patch)
tree2dc82ae95a9b7401b59c2a22eead08144e2a64d0 /apps/plugins
parentfaceafc411a01c0426768c88c7b7abe5738ae488 (diff)
downloadrockbox-476d28963df4093b70d50bf58d57183436359dcc.tar.gz
rockbox-476d28963df4093b70d50bf58d57183436359dcc.zip
fix star.c (FS#8998)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17567 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/star.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index 1b7c4d01b5..8efdd89bfb 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -992,7 +992,8 @@ static int star_menu(void)
992 { 992 {
993 rb->viewport_set_defaults(&vp[selection], selection); 993 rb->viewport_set_defaults(&vp[selection], selection);
994 /* we are hiding the statusbar so fix the height also */ 994 /* we are hiding the statusbar so fix the height also */
995 vp->y = 0; vp->height = rb->screens[selection]->height; 995 vp[selection].y = 0;
996 vp[selection].height = rb->screens[selection]->height;
996#if LCD_DEPTH > 1 997#if LCD_DEPTH > 1
997 if (rb->screens[selection]->depth > 1) 998 if (rb->screens[selection]->depth > 1)
998 { 999 {