summaryrefslogtreecommitdiff
path: root/apps/plugins/star.c
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2003-12-23 22:24:48 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2003-12-23 22:24:48 +0000
commit2d720b2a7968666bfc315026c8a69b8a762aa058 (patch)
treeeabe756f60a5049c0697d0dad3af28c5d850ab44 /apps/plugins/star.c
parent9aad0db9df7716fe4e2997bca09e8a0a46889b84 (diff)
downloadrockbox-2d720b2a7968666bfc315026c8a69b8a762aa058.tar.gz
rockbox-2d720b2a7968666bfc315026c8a69b8a762aa058.zip
I found several plugins to draw beyond screen boundary
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4176 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/star.c')
-rw-r--r--apps/plugins/star.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c
index 71b5170ad7..8ab8bec0b1 100644
--- a/apps/plugins/star.c
+++ b/apps/plugins/star.c
@@ -405,7 +405,7 @@ static void star_transition_update(void)
405 int y = 0; 405 int y = 0;
406 int var_y = 0; 406 int var_y = 0;
407 407
408 for (x = 0 ; x < lcd_demi_width ; x++) 408 for (x = 1 ; x < lcd_demi_width ; x++)
409 { 409 {
410 var_y += LCD_HEIGHT; 410 var_y += LCD_HEIGHT;
411 if (var_y > LCD_WIDTH) 411 if (var_y > LCD_WIDTH)