summaryrefslogtreecommitdiff
path: root/apps/plugins/snow.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-06-28 23:15:47 +0000
committerJens Arnold <amiconn@rockbox.org>2005-06-28 23:15:47 +0000
commit7e11acbce9b9a63c28ded055d02301175391e027 (patch)
treeea8d30e7281e8d720d6dc8ea51804e1749282697 /apps/plugins/snow.c
parentc2bf5dfe12978b44d5d890a37f256c8d9f510660 (diff)
downloadrockbox-7e11acbce9b9a63c28ded055d02301175391e027.tar.gz
rockbox-7e11acbce9b9a63c28ded055d02301175391e027.zip
Second part of graphics api rework. Bitmap drawing and text output converted; some code cleanup and more optimisations.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6906 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/snow.c')
-rw-r--r--apps/plugins/snow.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/snow.c b/apps/plugins/snow.c
index dd97abc4fb..36181e6eae 100644
--- a/apps/plugins/snow.c
+++ b/apps/plugins/snow.c
@@ -115,7 +115,7 @@ static void snow_move(void)
115 if (particle_exists(i)) 115 if (particle_exists(i))
116#ifdef HAVE_LCD_BITMAP 116#ifdef HAVE_LCD_BITMAP
117 rb->lcd_bitmap(flake,particles[i][0],particles[i][1], 117 rb->lcd_bitmap(flake,particles[i][0],particles[i][1],
118 FLAKE_WIDTH,FLAKE_WIDTH,true); 118 FLAKE_WIDTH,FLAKE_WIDTH);
119#else 119#else
120 pgfx_drawpixel(particles[i][0],particles[i][1]); 120 pgfx_drawpixel(particles[i][0],particles[i][1]);
121#endif 121#endif