diff options
| author | Antoine Cellerier <dionoea@videolan.org> | 2006-06-10 20:49:31 +0000 |
|---|---|---|
| committer | Antoine Cellerier <dionoea@videolan.org> | 2006-06-10 20:49:31 +0000 |
| commit | 19c90888cb4e86ce9ee86c065cc8c42b8f11e69c (patch) | |
| tree | 6f2c92595f8c21087f897c2b385025b91307a07b /apps/plugins | |
| parent | 40a92eaed929670c25961d7280f0d123c01aa48a (diff) | |
| download | rockbox-19c90888cb4e86ce9ee86c065cc8c42b8f11e69c.zip rockbox-19c90888cb4e86ce9ee86c065cc8c42b8f11e69c.tar.gz rockbox-19c90888cb4e86ce9ee86c065cc8c42b8f11e69c.tar.bz2 rockbox-19c90888cb4e86ce9ee86c065cc8c42b8f11e69c.tar.xz | |
Ooops. Fix compilation on non color lcd targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10101 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -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 88cc283..599ad2b 100644 --- a/apps/plugins/star.c +++ b/apps/plugins/star.c @@ -613,7 +613,7 @@ static int star_load_level(int current_level) STAR_TILE_SIZE, STAR_TILE_SIZE); #else # define DRAW_TILE( a ) \ - rb->lcd_mono_bitmap ( a # bmp, \ + rb->lcd_mono_bitmap ( a ## _bmp, \ STAR_OFFSET_X + x * STAR_TILE_SIZE, \ STAR_OFFSET_Y + y * STAR_TILE_SIZE, \ STAR_TILE_SIZE, STAR_TILE_SIZE); |