diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-23 22:24:48 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2003-12-23 22:24:48 +0000 |
| commit | 2d720b2a7968666bfc315026c8a69b8a762aa058 (patch) | |
| tree | eabe756f60a5049c0697d0dad3af28c5d850ab44 /apps/plugins/star.c | |
| parent | 9aad0db9df7716fe4e2997bca09e8a0a46889b84 (diff) | |
| download | rockbox-2d720b2a7968666bfc315026c8a69b8a762aa058.zip rockbox-2d720b2a7968666bfc315026c8a69b8a762aa058.tar.gz rockbox-2d720b2a7968666bfc315026c8a69b8a762aa058.tar.bz2 rockbox-2d720b2a7968666bfc315026c8a69b8a762aa058.tar.xz | |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/star.c b/apps/plugins/star.c index 71b5170..8ab8bec 100644 --- a/apps/plugins/star.c +++ b/apps/plugins/star.c @@ -405,7 +405,7 @@ static void star_transition_update(void) int y = 0; int var_y = 0; - for (x = 0 ; x < lcd_demi_width ; x++) + for (x = 1 ; x < lcd_demi_width ; x++) { var_y += LCD_HEIGHT; if (var_y > LCD_WIDTH) |